#include <lex.h>
Inheritance diagram for NLAISCRIPT::FlexLexer:
Public Member Functions | |
int | debug () const |
int | lineno () const |
void | set_debug (int flag) |
virtual void | switch_streams (istream *new_in=0, ostream *new_out=0)=0 |
virtual struct yy_buffer_state * | yy_create_buffer (istream *s, int size)=0 |
virtual void | yy_delete_buffer (struct yy_buffer_state *b)=0 |
virtual void | yy_switch_to_buffer (struct yy_buffer_state *new_buffer)=0 |
int | YYLeng () |
int | yylex (istream *new_in, ostream *new_out=0) |
virtual int | yylex ()=0 |
virtual void | yyrestart (istream *s)=0 |
const char * | YYText () |
virtual | ~FlexLexer () |
Protected Attributes | |
int | yy_flex_debug |
int | yyleng |
int | yylineno |
char * | yytext |
|
Definition at line 43 of file lex.h.
00043 { } |
|
Definition at line 71 of file lex.h. References yy_flex_debug.
00071 { return yy_flex_debug; } |
|
Definition at line 69 of file lex.h. References yylineno.
00069 { return yylineno; } |
|
Definition at line 72 of file lex.h. References yy_flex_debug.
00072 { yy_flex_debug = flag; } |
|
Implemented in NLAISCRIPT::yyFlexLexer. Referenced by yylex(). |
|
Implemented in NLAISCRIPT::yyFlexLexer. |
|
Implemented in NLAISCRIPT::yyFlexLexer. |
|
Implemented in NLAISCRIPT::yyFlexLexer. |
|
Definition at line 46 of file lex.h. References yyleng.
00046 { return yyleng; } |
|
Definition at line 58 of file lex.h. References switch_streams(), and yylex().
00059 { 00060 switch_streams( new_in, new_out ); 00061 return yylex(); 00062 } |
|
Implemented in NLAISCRIPT::yyFlexLexer. Referenced by yylex(). |
|
Implemented in NLAISCRIPT::yyFlexLexer. |
|
Definition at line 45 of file lex.h. References yytext.
00045 { return yytext; } |
|
Definition at line 78 of file lex.h. Referenced by debug(), set_debug(), and NLAISCRIPT::yyFlexLexer::yyFlexLexer(). |
|
Definition at line 76 of file lex.h. Referenced by YYLeng(). |
|
Definition at line 77 of file lex.h. Referenced by lineno(). |
|
Definition at line 75 of file lex.h. Referenced by YYText(). |