X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/3e979f58a2fd02e52ea45284ca1043e9e306a576..1e7addb5fc4f1251928673545764b012373a9334:/projects/sgauthstress/user.h

diff --git a/projects/sgauthstress/user.h b/projects/sgauthstress/user.h
index 0bf53345..ef63a907 100644
--- a/projects/sgauthstress/user.h
+++ b/projects/sgauthstress/user.h
@@ -12,8 +12,13 @@ class USER {
         USER(const std::string & login,
              const std::string & password,
              uint32_t ip);
+        USER(const USER & rvalue);
         ~USER();
 
+        USER & operator=(const USER & rvalue);
+
+        bool InitNetwork();
+
         const std::string & GetLogin() const { return login; }
         uint32_t GetIP() const { return ip; }
         uint32_t GetAliveTimeout() const { return aliveTimeout; }