]> git.stg.codes - stg.git/blobdiff - projects/stargazer/plugins/configuration/rpcconfig/rpcconfig.h
Hide or add proper copy ctor and assignement operator, initialize
[stg.git] / projects / stargazer / plugins / configuration / rpcconfig / rpcconfig.h
index 1095dd73b3e6bd2c71c3a65099eb99563a97d471..4e6d9f1fdbf5ac2306023831733a1a963b0d6924 100644 (file)
@@ -30,11 +30,12 @@ class RPC_CONFIG_SETTINGS
 {
 public:
                          RPC_CONFIG_SETTINGS();
-    virtual              ~RPC_CONFIG_SETTINGS() {};
-    const std::string &  GetStrError() const { return errorStr; };
+    virtual              ~RPC_CONFIG_SETTINGS() {}
+    const std::string &  GetStrError() const { return errorStr; }
     int                  ParseSettings(const MODULE_SETTINGS & s);
-    uint16_t             GetPort() const { return port; };
-    double               GetCookieTimeout() const { return cookieTimeout; };
+    uint16_t             GetPort() const { return port; }
+    double               GetCookieTimeout() const { return cookieTimeout; }
+
 private:
     std::string  errorStr;
     int          port;
@@ -43,6 +44,12 @@ private:
 
 struct ADMIN_INFO
 {
+    ADMIN_INFO()
+        : admin(),
+          accessTime(0),
+          priviledges()
+    {}
+
     std::string admin;
     time_t      accessTime;
     PRIV        priviledges;
@@ -80,6 +87,9 @@ public:
     bool                LogoutAdmin(const std::string & cookie);
 
 private:
+    RPC_CONFIG(const RPC_CONFIG & rvalue);
+    RPC_CONFIG & operator=(const RPC_CONFIG & rvalue);
+
     static void *           Run(void *);
     std::string             GetCookie() const;
     void                    InitiateRegistry();