37 typedef BuiltInProxy<Type> ThatClassType;
46 BuiltInProxy(
const ThatClassType& f)
51 const Type& operator=(
const ThatClassType& f)
73 ThatClassType& operator+=(
const Type& b)
75 return setValue(getValue() + b);
80 setValue(getValue() + 1);
92 setValue(getValue() - 1);
102 ThatClassType& operator-=(
const Type& b)
104 return setValue(getValue() - b);
107 ThatClassType& operator*=(
const Type& b)
109 return setValue(getValue() * b);
112 ThatClassType& operator/=(
const Type& b)
114 return setValue(getValue() / b);
119 ThatClassType& setValue(
const Type& v)
126 Type getValue()
const;
128 Type& getValueMutable()
130 m_info.setReadOrWrite();