The Real class inherits from the Tuple class and stores a single float.
Definition real.h:26
Real(float v)
Contructs a Real object that stores the specified float v.
float get() const
Gets the value of the Real object and the value could not be changed while accessing it.
void set(float v)
Sets the value of the Real object to the provided float v.
Real(const Real &other)
Constructs a Real object by copying the value of another Real object.
Real()
Contructs a Real object that stores a single float, initialized to 0.
The Tuple is a templated class inheriting from the most basic class Variant.
Definition tuple.h:27