]> git.stg.codes - stg.git/commitdiff
Return value from assignment operator.
authorMaxim Mamontov <faust.madf@gmail.com>
Mon, 7 Oct 2013 21:28:02 +0000 (00:28 +0300)
committerMaxim Mamontov <faust.madf@gmail.com>
Fri, 9 Jan 2015 19:38:01 +0000 (21:38 +0200)
Conflicts:
include/stg/admin_conf.h

include/stg/admin_conf.h

index df6d9e22456f0f633a804c1311cf25fa7d7dff90..28ceab661feb5d7aa95a600d24c9530a50081ab1 100644 (file)
@@ -75,6 +75,26 @@ struct ADMIN_CONF
     std::string   password;
 };
 //-----------------------------------------------------------------------------
+struct ADMIN_CONF_RES
+{
+    ADMIN_CONF_RES()
+    {}
+    ADMIN_CONF_RES(const ADMIN_CONF_RES & rhs)
+        : priv(rhs.priv),
+          login(rhs.login),
+          password(rhs.password)
+    {}
+    ADMIN_CONF_RES & operator=(const ADMIN_CONF_RES & rhs)
+    {
+        priv = rhs.priv;
+        login = rhs.login;
+        password = rhs.password;
+        return *this;
+    }
+    RESETABLE<PRIV> priv;
+    RESETABLE<std::string> login;
+    RESETABLE<std::string> password;
+};
 
 #include "admin_conf.inc.h"