From: Elena Mamontova Date: Wed, 9 Mar 2016 08:50:06 +0000 (+0200) Subject: Ticket 26. The const MODULE_SETTINGS & ms parameter added to the X-Git-Tag: 2.409~174^2~1^2~27 X-Git-Url: https://git.stg.codes/stg.git/commitdiff_plain/966dcea881e6120c14aeac60f2e8cde55027b656 Ticket 26. The const MODULE_SETTINGS & ms parameter added to the Reload() method of the class RPC_CONFIG in the rpconfig.h plugin. --- diff --git a/projects/stargazer/plugins/configuration/rpcconfig/rpcconfig.h b/projects/stargazer/plugins/configuration/rpcconfig/rpcconfig.h index 72a14f21..593f346d 100644 --- a/projects/stargazer/plugins/configuration/rpcconfig/rpcconfig.h +++ b/projects/stargazer/plugins/configuration/rpcconfig/rpcconfig.h @@ -70,7 +70,7 @@ public: int Start(); int Stop(); - int Reload() { return 0; } + int Reload(const MODULE_SETTINGS & ms) { return 0; } bool IsRunning() { return running && !stopped; } const std::string & GetStrError() const { return errorStr; }