1 #ifndef INTEGER_VALUE_H
2 #define INTEGER_VALUE_H
34 void print(std::ostream &s)
const;
IntegerValue is a Value that represents an integer value on the right-hand-side of an equation.
Definition: IntegerValue.hpp:9
long long getIntegerValue() const
Definition: IntegerValue.cpp:28
ValueType getValueType() const override
Definition: IntegerValue.hpp:41
std::string toString() const
Definition: IntegerValue.cpp:16
double getFloatingPointValue() const
Definition: IntegerValue.cpp:23
void print(std::ostream &s) const
Definition: IntegerValue.cpp:11
IntegerValue(long long value)
Definition: IntegerValue.cpp:6
Definition: NumericValue.hpp:8
ValueType
Definition: Value.hpp:28