X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/4e101b93cafd0881518fc2be53c051d47d374d93..9b8f74aec65e4e61ae82e14e6cb439da736ee808:/include/stg/user_property.h diff --git a/include/stg/user_property.h b/include/stg/user_property.h index fbcf8856..f53b416d 100644 --- a/include/stg/user_property.h +++ b/include/stg/user_property.h @@ -72,7 +72,8 @@ public: bool isPassword, bool isStat, STG_LOGGER & logger, - const std::string & sd); + const std::string & sd, + std::map & properties); virtual ~USER_PROPERTY_LOGGED() {} USER_PROPERTY_LOGGED * GetPointer() throw() { return this; } @@ -122,6 +123,7 @@ private: USER_STAT stat; USER_CONF conf; + std::map & properties; public: USER_PROPERTIES(const std::string & sd); @@ -171,8 +173,6 @@ public: USER_PROPERTY_LOGGED userdata7; USER_PROPERTY_LOGGED userdata8; USER_PROPERTY_LOGGED userdata9; - - std::map params; }; //============================================================================= @@ -276,7 +276,8 @@ USER_PROPERTY_LOGGED::USER_PROPERTY_LOGGED(varT & val, bool isPass, bool isSt, STG_LOGGER & logger, - const std::string & sd) + const std::string & sd, + std::map & properties) : USER_PROPERTY(val), stgLogger(logger), @@ -285,6 +286,7 @@ USER_PROPERTY_LOGGED::USER_PROPERTY_LOGGED(varT & val, name(n), scriptsDir(sd) { +properties.insert(std::make_pair(name, this)); } //------------------------------------------------------------------------- template @@ -386,9 +388,10 @@ else //------------------------------------------------------------------------- std::string USER_PROPERTIES::GetPropertyValue(const std::string & name) const { - std::map::iterator it = params.find(name); - if (it != params.end()) return it->second.ToString(); - else return ""; +std::map::iterator it = properties.find(name); +if (it == properties.end()) + return ""; +return it->second.ToString(); } //------------------------------------------------------------------------- //------------------------------------------------------------------------- @@ -401,6 +404,7 @@ return stream << value.ConstData(); } //----------------------------------------------------------------------------- template +inline std::string USER_PROPERTY::ToString() const { std::stringstream stream;