blob: 0d3a314aee4d593cc89c5058a219dd032c264410 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#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;
};
|