Started working on the direct construction of the backend inline item lists.
[external/ragel.git] / rlgen-ruby / rlgen-ruby.h
1 /*
2  *  2007 Victor Hugo Borja <vic@rubyforge.org>
3  *  Copyright 2001-2007 Adrian Thurston <thurston@complang.org>
4  */
5
6 /*  This file is part of Ragel.
7  *
8  *  Ragel is free software; you can redistribute it and/or modify
9  *  it under the terms of the GNU General Public License as published by
10  *  the Free Software Foundation; either version 2 of the License, or
11  *  (at your option) any later version.
12  * 
13  *  Ragel is distributed in the hope that it will be useful,
14  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  *  GNU General Public License for more details.
17  * 
18  *  You should have received a copy of the GNU General Public License
19  *  along with Ragel; if not, write to the Free Software
20  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA 
21  */
22
23 #ifndef _RLGEN_RUBY_H
24 #define _RLGEN_RUBY_H
25
26 #include <iostream>
27 #include "config.h"
28 #include "common.h"
29
30 #define PROGNAME "rlgen-ruby"
31
32 extern RubyImplEnum rubyImpl;
33 extern CodeStyleEnum codeStyle;
34
35 extern int gblErrorCount;
36 extern char machineMain[];
37
38 /* Options. */
39 extern int numSplitPartitions;
40 extern bool noLineDirectives;
41
42 std::ostream &error();
43
44 /*
45  * Local Variables:
46  * mode: c++
47  * indent-tabs-mode: 1
48  * c-file-style: "bsd"
49  * End:
50  */
51
52 #endif /* _RLGEN_RUBY_H */