diff options
Diffstat (limited to 'src/token.h')
| -rw-r--r-- | src/token.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/token.h b/src/token.h new file mode 100644 index 0000000..8ccb975 --- /dev/null +++ b/src/token.h @@ -0,0 +1,13 @@ +#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; +}; |
