aboutsummaryrefslogtreecommitdiffstats
path: root/value.h
diff options
context:
space:
mode:
Diffstat (limited to 'value.h')
-rw-r--r--value.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/value.h b/value.h
deleted file mode 100644
index 7d85d3c..0000000
--- a/value.h
+++ /dev/null
@@ -1,22 +0,0 @@
-#pragma once
-#include <string>
-#include "token.h"
-
-class Value {
- public:
- enum Type {
- Integer,
- String
- };
-
- Value(Token& token);
- const Value::Type getType() const;
- const int getIntData() const;
- const std::string& getStrData() const;
-
- private:
- int m_intData;
- std::string m_strData;
-
- Value::Type m_type;
-};