diff options
Diffstat (limited to 'token.h')
| -rw-r--r-- | token.h | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -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); +}; |
