]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.databoard/cpp/DataBoardTest/libantlr3c-3.2/include/antlr3treeparser.h
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.databoard / cpp / DataBoardTest / libantlr3c-3.2 / include / antlr3treeparser.h
1 #ifndef ANTLR3TREEPARSER_H\r
2 #define ANTLR3TREEPARSER_H\r
3 \r
4 // [The "BSD licence"]\r
5 // Copyright (c) 2005-2009 Jim Idle, Temporal Wave LLC\r
6 // http://www.temporal-wave.com\r
7 // http://www.linkedin.com/in/jimidle\r
8 //\r
9 // All rights reserved.\r
10 //\r
11 // Redistribution and use in source and binary forms, with or without\r
12 // modification, are permitted provided that the following conditions\r
13 // are met:\r
14 // 1. Redistributions of source code must retain the above copyright\r
15 //    notice, this list of conditions and the following disclaimer.\r
16 // 2. Redistributions in binary form must reproduce the above copyright\r
17 //    notice, this list of conditions and the following disclaimer in the\r
18 //    documentation and/or other materials provided with the distribution.\r
19 // 3. The name of the author may not be used to endorse or promote products\r
20 //    derived from this software without specific prior written permission.\r
21 //\r
22 // THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\r
23 // IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\r
24 // OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\r
25 // IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\r
26 // INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\r
27 // NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\r
28 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\r
29 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\r
30 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\r
31 // THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\r
32 \r
33 #include    <antlr3defs.h>\r
34 #include    <antlr3baserecognizer.h>\r
35 #include    <antlr3commontreenodestream.h>\r
36 \r
37 #ifdef __cplusplus\r
38 extern "C" {\r
39 #endif\r
40 \r
41 /** Internal structure representing an element in a hash bucket.\r
42  *  Stores the original key so that duplicate keys can be rejected\r
43  *  if necessary, and contains function can be supported If the hash key\r
44  *  could be unique I would have invented the perfect compression algorithm ;-)\r
45  */\r
46 typedef struct  ANTLR3_TREE_PARSER_struct\r
47 {\r
48     /** Pointer to any super class\r
49      */\r
50     void    * super;\r
51 \r
52     /** A pointer to the base recognizer, where most of the parser functions actually\r
53      *  live because they are shared between parser and tree parser and this is the\r
54      *  easier way than copying the interface all over the place. Macros hide this\r
55      *  for the generated code so it is easier on the eye (though not the debugger ;-).\r
56      */\r
57     pANTLR3_BASE_RECOGNIZER             rec;\r
58 \r
59     /** Pointer to the common tree node stream for the parser\r
60      */\r
61     pANTLR3_COMMON_TREE_NODE_STREAM     ctnstream;\r
62 \r
63     /** Set the input stream and reset the parser\r
64      */\r
65     void                            (*setTreeNodeStream)    (struct ANTLR3_TREE_PARSER_struct * parser, pANTLR3_COMMON_TREE_NODE_STREAM input);\r
66 \r
67     /** Return a pointer to the input stream\r
68      */\r
69     pANTLR3_COMMON_TREE_NODE_STREAM (*getTreeNodeStream)    (struct ANTLR3_TREE_PARSER_struct * parser);\r
70     \r
71     /** Pointer to a function that knows how to free resources of an ANTLR3 tree parser.\r
72      */\r
73     void                            (*free)                 (struct ANTLR3_TREE_PARSER_struct * parser);\r
74 }\r
75     ANTLR3_TREE_PARSER;\r
76 \r
77 #ifdef __cplusplus\r
78 }\r
79 #endif\r
80 \r
81 #endif\r