#ifndef TOKENIZE_H #define TOKENIZE_H #include #include #include using namespace std; enum class TokenType { Type, Identifier, Number, Plus, Minus, Star, Slash, Percent, Equal, Semicolon, LParenthese, RParenthese }; enum class Type { Int }; using TokenData = variant; struct Token { TokenType type; TokenData data; }; #endif