summaryrefslogtreecommitdiff
path: root/src/parse/preproc.hpp
blob: bedb307650e3cadf01d160e3f27d427946c40226 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef PREPROC_H
#define PREPROC_H

#include "lex.hpp"

class Preproc:
    public TokenStream
{
    Lexer   m_lex;

public:
    Preproc(::std::string path);
    ~Preproc();

    virtual Token realGetToken();
private:
    Token getTokenInt();
};

#endif // PREPROC_H