X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fcore%2Fcoreapplication.h;h=9819e909a4dae291b9d4a2d79b1c04ebf8fa50d9;hb=18389a713a6810f57ab237b945e8ee03df857b8b;hp=3be2dbee12e6eb7dd291cc61060e5e2a532d0c44;hpb=84cd3561e97167ffb98ecab0fd2b884ba1d13ada;p=quassel.git diff --git a/src/core/coreapplication.h b/src/core/coreapplication.h index 3be2dbee..9819e909 100644 --- a/src/core/coreapplication.h +++ b/src/core/coreapplication.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2014 by the Quassel Project * + * Copyright (C) 2005-2018 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -38,6 +38,15 @@ public: bool init(); + /** + * Requests a reload of relevant runtime configuration. + * + * In particular, signals to the Core to reload SSL certificates. + * + * @return True if configuration reload successful, otherwise false + */ + bool reloadConfig(); + private: bool _coreCreated; }; @@ -52,6 +61,15 @@ public: bool init(); + /** + * Requests a reload of relevant runtime configuration. + * + * @see Quassel::reloadConfig() + * + * @return True if configuration reload successful, otherwise false + */ + bool reloadConfig(); + private: CoreApplicationInternal *_internal; };