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