X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/efc31e581ff0c9ca27959ff3b2b694d401d7349c..e3703f791ff52f6d7a9d6f9e8dca37a506967c2b:/include/stg/user_conf.h diff --git a/include/stg/user_conf.h b/include/stg/user_conf.h index d0415c42..5987c4d8 100644 --- a/include/stg/user_conf.h +++ b/include/stg/user_conf.h @@ -39,7 +39,7 @@ struct USER_CONF std::string note; std::string realName; std::string corp; - std::vector services; + std::vector service; std::string group; double credit; std::string nextTariff; @@ -51,9 +51,8 @@ struct USER_CONF struct USER_CONF_RES { USER_CONF_RES() - { - } - + : userdata(USERDATA_NUM) + {} USER_CONF_RES & operator=(const USER_CONF & uc) { userdata.resize(USERDATA_NUM); @@ -68,12 +67,13 @@ struct USER_CONF_RES email = uc.email; note = uc.note; realName = uc.realName; - corp = uc.corp; group = uc.group; credit = uc.credit; nextTariff = uc.nextTariff; - for (size_t i = 0; i < USERDATA_NUM; i++) userdata[i] = uc.userdata[i]; - services = uc.services; + for (int i = 0; i < USERDATA_NUM; i++) + { + userdata[i] = uc.userdata[i]; + } creditExpire = uc.creditExpire; ips = uc.ips; return *this; @@ -92,15 +92,13 @@ struct USER_CONF_RES uc.email = email.data(); uc.note = note.data(); uc.realName = realName.data(); - uc.corp = corp.data(); uc.group = group.data(); uc.credit = credit.data(); uc.nextTariff = nextTariff.data(); - for (size_t i = 0; i < USERDATA_NUM; i++) + for (int i = 0; i < USERDATA_NUM; i++) { uc.userdata[i] = userdata[i].data(); } - uc.services = services.data(); uc.creditExpire = creditExpire.data(); uc.ips = ips.data(); return uc; @@ -118,12 +116,10 @@ struct USER_CONF_RES RESETABLE email; RESETABLE note; RESETABLE realName; - RESETABLE corp; RESETABLE group; RESETABLE credit; RESETABLE nextTariff; std::vector > userdata; - RESETABLE > services; RESETABLE creditExpire; RESETABLE ips; };