2 * Copyright 2001-2006 Adrian Thurston <thurston@cs.queensu.ca>
3 * 2004 Erich Ocean <eric.ocean@ampede.com>
4 * 2005 Alan West <alan@alanz.com>
7 /* This file is part of Ragel.
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.
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.
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
24 #ifndef _FTABCODEGEN_H
25 #define _FTABCODEGEN_H
28 #include "tabcodegen.h"
37 class FTabCodeGen : public TabCodeGen
40 FTabCodeGen( ostream &out ) : FsmCodeGen(out), TabCodeGen(out) {}
42 std::ostream &TO_STATE_ACTION_SWITCH();
43 std::ostream &FROM_STATE_ACTION_SWITCH();
44 std::ostream &EOF_ACTION_SWITCH();
45 std::ostream &ACTION_SWITCH();
47 virtual std::ostream &TO_STATE_ACTION( RedStateAp *state );
48 virtual std::ostream &FROM_STATE_ACTION( RedStateAp *state );
49 virtual std::ostream &EOF_ACTION( RedStateAp *state );
50 virtual std::ostream &TRANS_ACTION( RedTransAp *trans );
51 virtual void writeData();
52 virtual void writeExec();
53 virtual void calcIndexSize();
61 : public FTabCodeGen, public CCodeGen
63 CFTabCodeGen( ostream &out ) :
64 FsmCodeGen(out), FTabCodeGen(out), CCodeGen(out) {}
71 : public FTabCodeGen, public DCodeGen
73 DFTabCodeGen( ostream &out ) :
74 FsmCodeGen(out), FTabCodeGen(out), DCodeGen(out) {}
77 #endif /* _FTABCODEGEN_H */