ICG 2
Electric Boogaloo
NumericValue.hpp
Go to the documentation of this file.
1 #ifndef NUMERIC_VALUE_H
2 #define NUMERIC_VALUE_H
3 
4 #include "Value/Value.hpp"
5 
8 class NumericValue : public Value {
9 
10  public:
11 
16  virtual double getFloatingPointValue() const = 0;
17 
22  virtual long long getIntegerValue() const = 0;
23 };
24 
25 #endif
Definition: NumericValue.hpp:8
virtual double getFloatingPointValue() const =0
virtual long long getIntegerValue() const =0
Value is an abstract base-class that represents a value on the right-hand-side of an assignment.
Definition: Value.hpp:9