| 490 | template<> std::string const& VariableImpl<std::string>::GetString() const { return GetDataRef(); } |
| 491 | |
| 492 | template<> void VariableImpl<bool>::SetBool(bool value, SetBy setby) { SetData(value, setby); } |
| 493 | template<> void VariableImpl<int>::SetInt(int value, SetBy setby) { SetData(value, setby); } |
| 494 | template<> void VariableImpl<int2>::SetInt2(int2 value, SetBy setby) { SetData(value, setby); } |
| 495 | template<> void VariableImpl<int3>::SetInt3(int3 value, SetBy setby) { SetData(value, setby); } |
nothing calls this directly
no outgoing calls
no test coverage detected