aboutsummaryrefslogtreecommitdiffstats
path: root/token.h
diff options
context:
space:
mode:
Diffstat (limited to 'token.h')
-rw-r--r--token.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/token.h b/token.h
deleted file mode 100644
index 8ccb975..0000000
--- a/token.h
+++ /dev/null
@@ -1,13 +0,0 @@
-#pragma once
-#include <string>
-
-class Token {
- private:
- std::string m_lexeme;
- bool m_isString;
-
- public:
- Token(std::string& lexeme, bool isString);
- const std::string& getLexeme() const;
- bool isString() const;
-};