This commit is contained in:
parent
c339c5acb2
commit
4ce71ec178
5 changed files with 1721 additions and 0 deletions
33
Utils/Scripter/lexer.h
Normal file
33
Utils/Scripter/lexer.h
Normal file
|
@ -0,0 +1,33 @@
|
|||
#ifndef _LEXER_H
|
||||
#define _LEXER_H
|
||||
|
||||
#include <clex.h>
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// mylexer
|
||||
|
||||
class YYFAR mylexer : public yyflexer {
|
||||
public:
|
||||
mylexer();
|
||||
|
||||
protected:
|
||||
void yytables();
|
||||
virtual int yyaction(int action);
|
||||
|
||||
public:
|
||||
#line 23 "C:\\spongebob\\Utils\\scripter\\lexer.l"
|
||||
|
||||
// place any extra class members here
|
||||
|
||||
#line 23 "C:\\spongebob\\Utils\\scripter\\lexer.h"
|
||||
};
|
||||
|
||||
#ifndef YYLEXNAME
|
||||
#define YYLEXNAME mylexer
|
||||
#endif
|
||||
|
||||
#ifndef INITIAL
|
||||
#define INITIAL 0
|
||||
#endif
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue