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