summaryrefslogtreecommitdiffstats
path: root/languages/cpp/file_templates/ll
blob: 96daef191799096719706a75f9b2176086fe0f18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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

%%


%%