1 2 3 4 5 6 7 8 9 10 11 12 13
#ifndef LEXER_H #define LEXER_H #if !defined(yyFlexLexerOnce) #include <FlexLexer.h> #endif template <class T> class Lexer : public yyFlexLexer { public: T yynlex(); }; #endif