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