summaryrefslogtreecommitdiff
path: root/src/lexer.h
blob: c626d02410a2d3a869e996879306f8e7e49fd720 (plain) (blame)
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