7cfbd6650ecf3b756d4e7f7cf383171882728f0a
[external/ragel.git] / rlcodegen / fflatcodegen.h
1 /*
2  *  Copyright 2004-2006 Adrian Thurston <thurston@cs.queensu.ca>
3  *            2004 Eric Ocean <eric.ocean@ampede.com>
4  *            2005 Alan West <alan@alanz.com>
5  */
6
7 /*  This file is part of Ragel.
8  *
9  *  Ragel is free software; you can redistribute it and/or modify
10  *  it under the terms of the GNU General Public License as published by
11  *  the Free Software Foundation; either version 2 of the License, or
12  *  (at your option) any later version.
13  * 
14  *  Ragel is distributed in the hope that it will be useful,
15  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  *  GNU General Public License for more details.
18  * 
19  *  You should have received a copy of the GNU General Public License
20  *  along with Ragel; if not, write to the Free Software
21  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA 
22  */
23
24 #ifndef _FFLATCODEGEN_H
25 #define _FFLATCODEGEN_H
26
27 #include <iostream>
28 #include "flatcodegen.h"
29
30 /* Forwards. */
31 struct CodeGenData;
32
33 /*
34  * FFlatCodeGen
35  */
36 class FFlatCodeGen : public FlatCodeGen
37 {
38 protected:
39         std::ostream &TO_STATE_ACTION_SWITCH();
40         std::ostream &FROM_STATE_ACTION_SWITCH();
41         std::ostream &EOF_ACTION_SWITCH();
42         std::ostream &ACTION_SWITCH();
43
44         virtual std::ostream &TO_STATE_ACTION( RedStateAp *state );
45         virtual std::ostream &FROM_STATE_ACTION( RedStateAp *state );
46         virtual std::ostream &EOF_ACTION( RedStateAp *state );
47         virtual std::ostream &TRANS_ACTION( RedTransAp *trans );
48
49         virtual void writeOutData();
50         virtual void writeOutEOF();
51         virtual void writeOutExec();
52 };
53
54 /*
55  * CFFlatCodeGen
56  */
57 struct CFFlatCodeGen
58         : public FFlatCodeGen, public CCodeGen
59 {
60 };
61
62 /*
63  * DFFlatCodeGen
64  */
65 struct DFFlatCodeGen
66         : public FFlatCodeGen, public DCodeGen
67 {
68 };
69
70 #endif /* _FFLATCODEGEN_H */