diff options
Diffstat (limited to 'languages/cpp/file_templates/ll')
-rw-r--r-- | languages/cpp/file_templates/ll | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/languages/cpp/file_templates/ll b/languages/cpp/file_templates/ll new file mode 100644 index 00000000..96daef19 --- /dev/null +++ b/languages/cpp/file_templates/ll @@ -0,0 +1,42 @@ +/* + * + * flex C++ implementation: $MODULE$ + * + * Description: + * + * + * Author: $AUTHOR$ <$EMAIL$>, (C) $YEAR$ + * + * Copyright: See COPYING file that comes with this distribution + * + */ + +/* + * + * Use options + * + * %option prefix="foo" + * %option outfile="lex.yy.c" + * + * to create multiple flex scanner in one project. + * + * + * To create scanner class: + * + * %option c++ + * + * (see '%option yyclass' also!) + * + */ + +%{ + + +%} + +%option debug + +%% + + +%% |