iw4x-client/src/Utils/InfoString.hpp
2017-01-19 22:55:15 +01:00

24 lines
471 B
C++

namespace Utils
{
class InfoString
{
public:
InfoString() {};
InfoString(std::string buffer) : InfoString() { this->parse(buffer); };
InfoString(const InfoString &obj) : keyValuePairs(obj.keyValuePairs) {};
void set(std::string key, std::string value);
std::string get(std::string key);
std::string build();
void dump();
json11::Json to_json();
private:
std::map<std::string, std::string> keyValuePairs;
void parse(std::string buffer);
};
}