11 #include "utils/logtypes.h" 17 enum class SettingUpdateType {
31 return m_type < rhs.m_type && m_value < rhs.m_value;
34 virtual bool Deserialize(
const TiXmlNode *node);
36 SettingUpdateType GetType()
const {
return m_type; }
37 const std::string& GetValue()
const {
return m_value; }
40 bool setType(
const std::string &type);
42 SettingUpdateType m_type = SettingUpdateType::Unknown;
45 static Logger s_logger;
Definition: SettingUpdate.h:23