aboutsummaryrefslogtreecommitdiffstats
path: root/token.h
blob: b6ad24dc3abc4492ef105ad88fb76f147f86eb97 (plain)
1
2
3
4
5
6
7
8
9
10
11
#pragma once
#include <string>

class Token {
    private:
        std::string m_lexeme;
        bool m_isString;

    public:
        Token(std::string& lexeme, bool isString);
};