We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
REX::TSetting
1 parent 071b7a4 commit 3169f14Copy full SHA for 3169f14
1 file changed
CommonLibF4/include/REX/REX/Setting.h
@@ -41,6 +41,10 @@ namespace REX
41
42
void SetValue(T a_value) { m_value = a_value; }
43
44
+ public:
45
+ operator T&() { return m_value; }
46
+ operator const T&() const { return m_value; }
47
+
48
protected:
49
T m_value;
50
T m_valueDefault;
0 commit comments