12345678910111213141516171819202122232425 |
- #pragma once
- #include <string>
- #pragma warning (disable:4251)
- class ConfigInfo
- {
- public:
- ConfigInfo (const char* Key, const char* strType, const char* strAccess, const char* strRequired, const char* strDefaultValue);
- virtual ~ConfigInfo ();
- void SetList (const char* str);
- void SetRange (const char* strmin, const char* strmax);
- const char* GetCurrentValue ();
- void SetCurrentValue (const char* res);
- const char* GetDescription ();
- const char* GetKey ();
- private:
- std::string strConfKey;
- std::string resValue;
- std::string resDescription;
- };
|