-rw-r--r-- | include/sitecing/sitecing_enflesher.h | 18 | ||||
-rw-r--r-- | include/sitecing/sitecing_parser.h | 16 |
2 files changed, 29 insertions, 5 deletions
diff --git a/include/sitecing/sitecing_enflesher.h b/include/sitecing/sitecing_enflesher.h index db15bc3..9eefdcc 100644 --- a/include/sitecing/sitecing_enflesher.h +++ b/include/sitecing/sitecing_enflesher.h @@ -15,2 +15,5 @@ using namespace std; #undef yyFlexLexer +/** + * nevermind me + */ #define yyFlexLexer sitecing_enflesherFlexLexer @@ -28,3 +31,3 @@ class sitecing_enflesher : public sitecing_enflesherFlexLexer { /** - * It is time to anchor output with the #line directive. + * It is time to anchor output with the \#line directive. */ @@ -32,3 +35,3 @@ class sitecing_enflesher : public sitecing_enflesherFlexLexer { /** - * The file currently being written is supposed to have #line + * The file currently being written is supposed to have \#line * directives all around the place. @@ -61,3 +64,12 @@ class sitecing_enflesher : public sitecing_enflesherFlexLexer { + /** + * Output parsed data + * @param buf pointer to the data + * @param size length of the buffer pointed by buf + */ virtual void LexerOutput(const char *buf,int size); + /** + * Lexer generated by flex + * @return zero on success + */ virtual int yylex(); @@ -65,3 +77,3 @@ class sitecing_enflesher : public sitecing_enflesherFlexLexer { /** - * Put a #line anchor into output. + * Put a \#line anchor into output. */ diff --git a/include/sitecing/sitecing_parser.h b/include/sitecing/sitecing_parser.h index a53ef22..bcabc5c 100644 --- a/include/sitecing/sitecing_parser.h +++ b/include/sitecing/sitecing_parser.h @@ -20,2 +20,5 @@ using namespace sitecing; #undef yyFlexLexer +/** + * nevermind me + */ #define yyFlexLexer sitecing_parserFlexLexer @@ -313,3 +316,12 @@ class sitecing_parser : public sitecing_parserFlexLexer { + /** + * Output parsed data + * @param buf pointer to the data + * @param size length of the buffer pointed by buf + */ virtual void LexerOutput(const char *buf,int size); + /** + * Lexer generated by flex + * @return zero on success + */ virtual int yylex(); @@ -324,3 +336,3 @@ class sitecing_parser : public sitecing_parserFlexLexer { /** - * Anchor the output with the #line, if we're not in the text output mode. + * Anchor the output with the \#line, if we're not in the text output mode. */ @@ -328,3 +340,3 @@ class sitecing_parser : public sitecing_parserFlexLexer { /** - * Anchor the output with the #line directive, changing to the appropriate output mode if needed. + * Anchor the output with the \#line directive, changing to the appropriate output mode if needed. */ |