aboutsummaryrefslogtreecommitdiffstats
path: root/token.h
diff options
context:
space:
mode:
authorjantuomi <jans.tuomi@gmail.com>2016-09-01 11:20:59 +0300
committerjantuomi <jans.tuomi@gmail.com>2016-09-01 11:20:59 +0300
commit50bafbdd68160d00606a4e83d9759c21223c11f8 (patch)
tree66c58cfb012dc0b7d222a03e8c55507b75e9af1f /token.h
parentbe011366f249b8ebed3905030ce3b7021597ee34 (diff)
Restructure project
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;
-};