Searched refs:VarTypes (Results 1 – 1 of 1) sorted by relevance
43 explicit Var(int i) : m_Vals(i), m_Type(VarTypes::Integer) {}; in Var()44 explicit Var(unsigned int u) : m_Vals(u), m_Type(VarTypes::UnsignedInteger) {}; in Var()45 explicit Var(float f) : m_Vals(f), m_Type(VarTypes::Float) {}; in Var()46 explicit Var(bool b) : m_Vals(b), m_Type(VarTypes::Boolean) {}; in Var()47 explicit Var(const char* s) : m_Vals(s), m_Type(VarTypes::String) {}; in Var()48 explicit Var(std::string s) : m_Vals(s), m_Type(VarTypes::String) {}; in Var()64 case VarTypes::String: in Var()84 if (m_Type == VarTypes::String) in operator =()92 case VarTypes::String: in operator =()112 bool IsBool() const { return m_Type == VarTypes::Boolean; } in IsBool()[all …]