Click here to Skip to main content
15,896,726 members
Articles / Desktop Programming / MFC

Another Enum Viewer

Rate me:
Please Sign up or sign in to vote.
4.50/5 (2 votes)
22 Oct 20015 min read 83.1K   1.3K   19  
An article on the usage and design of another Enum Viewer
/*
 * CPPParser: P a r s e r  S u p p o r t
 *
 * Generated from: cplusplus.g
 *
 * Terence Parr, Russell Quong, Will Cohen, and Hank Dietz: 1989-1995
 * Parr Research Corporation
 * with Purdue University Electrical Engineering
 * with AHPCRC, University of Minnesota
 * 
 * Extensive hackery by John Lilley, Empathy Software 1996-97
 * ANTLR Version 1.33j
 */

#include <stdio.h>
#define ANTLR_VERSION	133
#define ANTLR_SUPPORT_CODE
#include "../cpre/tokens.h"
#include "CPPParser.h"

const ANTLRChar * const CPPParser::_token_tbl[]={
	/* 00 */	"Invalid",
	/* 01 */	"TOK_Eof",
	/* 02 */	"TOK_AMPERSAND",
	/* 03 */	"TOK_AND",
	/* 04 */	"TOK_ASSIGNEQUAL",
	/* 05 */	"TOK_BITWISEANDEQUAL",
	/* 06 */	"TOK_BITWISEOR",
	/* 07 */	"TOK_BITWISEOREQUAL",
	/* 08 */	"TOK_BITWISEXOR",
	/* 09 */	"TOK_BITWISEXOREQUAL",
	/* 10 */	"TOK_COMMA",
	/* 11 */	"TOK_COLON",
	/* 12 */	"TOK_DIVIDE",
	/* 13 */	"TOK_DIVIDEEQUAL",
	/* 14 */	"TOK_DOT",
	/* 15 */	"TOK_DOTMBR",
	/* 16 */	"TOK_ELLIPSIS",
	/* 17 */	"TOK_EQUAL",
	/* 18 */	"TOK_GREATERTHAN",
	/* 19 */	"TOK_GREATERTHANOREQUALTO",
	/* 20 */	"TOK_LCURLY",
	/* 21 */	"TOK_LESSTHAN",
	/* 22 */	"TOK_LESSTHANOREQUALTO",
	/* 23 */	"TOK_LPAREN",
	/* 24 */	"TOK_LSQUARE",
	/* 25 */	"TOK_MINUS",
	/* 26 */	"TOK_MINUSEQUAL",
	/* 27 */	"TOK_MINUSMINUS",
	/* 28 */	"TOK_MOD",
	/* 29 */	"TOK_MODEQUAL",
	/* 30 */	"TOK_NOT",
	/* 31 */	"TOK_NOTEQUAL",
	/* 32 */	"TOK_OR",
	/* 33 */	"TOK_PLUS",
	/* 34 */	"TOK_PLUSEQUAL",
	/* 35 */	"TOK_PLUSPLUS",
	/* 36 */	"TOK_POINTERTO",
	/* 37 */	"TOK_POINTERTOMBR",
	/* 38 */	"TOK_QUESTIONMARK",
	/* 39 */	"TOK_RCURLY",
	/* 40 */	"TOK_RPAREN",
	/* 41 */	"TOK_RSQUARE",
	/* 42 */	"TOK_SCOPE",
	/* 43 */	"TOK_SEMICOLON",
	/* 44 */	"TOK_SHIFTLEFT",
	/* 45 */	"TOK_SHIFTLEFTEQUAL",
	/* 46 */	"TOK_SHIFTRIGHT",
	/* 47 */	"TOK_SHIFTRIGHTEQUAL",
	/* 48 */	"TOK_STAR",
	/* 49 */	"TOK_TILDE",
	/* 50 */	"TOK_TIMESEQUAL",
	/* 51 */	"TOK_ASM",
	/* 52 */	"TOK_AUTO",
	/* 53 */	"TOK_BOOL",
	/* 54 */	"TOK_BOOLFALSE",
	/* 55 */	"TOK_BOOLTRUE",
	/* 56 */	"TOK_BREAK",
	/* 57 */	"TOK_CASE",
	/* 58 */	"TOK_CATCH",
	/* 59 */	"TOK_CHAR",
	/* 60 */	"TOK_CLASS",
	/* 61 */	"TOK_CONST",
	/* 62 */	"TOK_CONST_CAST",
	/* 63 */	"TOK_CONTINUE",
	/* 64 */	"TOK_DEFAULT",
	/* 65 */	"TOK_DEFINED",
	/* 66 */	"TOK_DELETE",
	/* 67 */	"TOK_DO",
	/* 68 */	"TOK_DOUBLE",
	/* 69 */	"TOK_DYNAMIC_CAST",
	/* 70 */	"TOK_ELSE",
	/* 71 */	"TOK_ENUM",
	/* 72 */	"TOK_EXPLICIT",
	/* 73 */	"TOK_EXTERN",
	/* 74 */	"TOK_FLOAT",
	/* 75 */	"TOK_FOR",
	/* 76 */	"TOK_FRIEND",
	/* 77 */	"TOK_GOTO",
	/* 78 */	"TOK_IF",
	/* 79 */	"TOK_INLINE",
	/* 80 */	"TOK_INT",
	/* 81 */	"TOK_LONG",
	/* 82 */	"TOK_MUTABLE",
	/* 83 */	"TOK_NAMESPACE",
	/* 84 */	"TOK_NEW",
	/* 85 */	"TOK_OPERATOR",
	/* 86 */	"TOK_PRIVATE",
	/* 87 */	"TOK_PROTECTED",
	/* 88 */	"TOK_PUBLIC",
	/* 89 */	"TOK_REGISTER",
	/* 90 */	"TOK_REINTERPRET_CAST",
	/* 91 */	"TOK_RETURN",
	/* 92 */	"TOK_SHORT",
	/* 93 */	"TOK_SIGNED",
	/* 94 */	"TOK_SIZEOF",
	/* 95 */	"TOK_STATIC",
	/* 96 */	"TOK_STATIC_CAST",
	/* 97 */	"TOK_STRUCT",
	/* 98 */	"TOK_SWITCH",
	/* 99 */	"TOK_TEMPLATE",
	/* 100 */	"TOK_THIS",
	/* 101 */	"TOK_THROW",
	/* 102 */	"TOK_TRY",
	/* 103 */	"TOK_TYPEDEF",
	/* 104 */	"TOK_TYPEID",
	/* 105 */	"TOK_TYPENAME",
	/* 106 */	"TOK_UNION",
	/* 107 */	"TOK_UNSIGNED",
	/* 108 */	"TOK_USING",
	/* 109 */	"TOK_VIRTUAL",
	/* 110 */	"TOK_VOID",
	/* 111 */	"TOK_VOLATILE",
	/* 112 */	"TOK_WCHAR_T",
	/* 113 */	"TOK_WHILE",
	/* 114 */	"TOK_MSEXT_INT8",
	/* 115 */	"TOK_MSEXT_INT16",
	/* 116 */	"TOK_MSEXT_INT32",
	/* 117 */	"TOK_MSEXT_INT64",
	/* 118 */	"TOK_MSEXT_BASED",
	/* 119 */	"TOK_MSEXT_DECLSPEC",
	/* 120 */	"TOK_MSEXT_CDECL",
	/* 121 */	"TOK_MSEXT_FASTCALL",
	/* 122 */	"TOK_MSEXT_STDCALL",
	/* 123 */	"TOK_MSEXT_TRY",
	/* 124 */	"TOK_MSEXT_EXCEPT",
	/* 125 */	"TOK_MSEXT_FINALLY",
	/* 126 */	"TOK_MSEXT_LEAVE",
	/* 127 */	"TOK_MSEXT_INLINE",
	/* 128 */	"TOK_MSEXT_ASM",
	/* 129 */	"TOK_ID",
	/* 130 */	"TOK_OCTALINT",
	/* 131 */	"TOK_DECIMALINT",
	/* 132 */	"TOK_HEXADECIMALINT",
	/* 133 */	"TOK_FLOATONE",
	/* 134 */	"TOK_FLOATTWO",
	/* 135 */	"",
	/* 136 */	"",
	/* 137 */	"",
	/* 138 */	"",
	/* 139 */	"",
	/* 140 */	"",
	/* 141 */	"TOK_SLCOMMENT",
	/* 142 */	"TOK_PNDPND",
	/* 143 */	"TOK_PND",
	/* 144 */	"TOK_NEWLINE",
	/* 145 */	"TOK_PP_NUMBER",
	/* 146 */	"",
	/* 147 */	"TOK_PNDDEFINE",
	/* 148 */	"TOK_PNDIF",
	/* 149 */	"TOK_PNDIFDEF",
	/* 150 */	"TOK_PNDIFNDEF",
	/* 151 */	"TOK_PNDELIF",
	/* 152 */	"TOK_PNDELSE",
	/* 153 */	"TOK_PNDENDIF",
	/* 154 */	"TOK_PNDERROR",
	/* 155 */	"TOK_PNDINCLUDE",
	/* 156 */	"TOK_PNDLINE",
	/* 157 */	"TOK_PNDPRAGMA",
	/* 158 */	"TOK_PNDUNDEF",
	/* 159 */	"TOK_PRAGMA_END",
	/* 160 */	"",
	/* 161 */	"TOK_FUNCID",
	/* 162 */	"",
	/* 163 */	"",
	/* 164 */	"",
	/* 165 */	"",
	/* 166 */	"TOK_STRING",
	/* 167 */	"",
	/* 168 */	"",
	/* 169 */	"",
	/* 170 */	"TOK_CHARACTER",
	/* 171 */	"OPTOR_SIMPLE_TOKCLASS",
	/* 172 */	"ASSIGN_TOKCLASS",
	/* 173 */	"UNARYOP_TOKCLASS",
	/* 174 */	"ADDITIVE_TOKCLASS",
	/* 175 */	"EQUALITY_TOKCLASS",
	/* 176 */	"MULTIPLICATIVE_TOKCLASS",
	/* 177 */	"PM_TOKCLASS",
	/* 178 */	"RELATIONAL_TOKCLASS",
	/* 179 */	"SHIFT_TOKCLASS",
	/* 180 */	"CONSTANT_TOKCLASS",
	/* 181 */	"BUILTIN_TOKCLASS",
	/* 182 */	"CAST_TOKCLASS",
	/* 183 */	"CURLY_SEMICOLON_TOKCLASS",
	/* 184 */	"CURLY_TOKCLASS",
	/* 185 */	"RCURLY_EOF_TOKCLASS",
	/* 186 */	"EXTERNAL_SYNC_TOKCLASS",
	/* 187 */	"EXTERNAL_SYNC2_TOKCLASS",
	/* 188 */	"MEMBER_SYNC_TOKCLASS",
	/* 189 */	"STATEMENT_SYNC_TOKCLASS",
	/* 190 */	"DECLSPEC_DECLARATOR_AMBIG_TOKCLASS"
};

CPPParser::CPPParser(ANTLRTokenBuffer *input) : ANTLRParser(input,1,1,0,24)
{
	token_tbl = _token_tbl;
}

SetWordType CPPParser::err1[24] = {0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0, 0x0,0x0,0xc0,0x1,
	0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::BUILTIN_TOKCLASS_set[24] = {0x0,0x0,0x0,0x0, 0x0,0x0,0x20,0x8, 0x10,0x4,0x3,0x30,
	0x0,0x48,0x3d,0x0};
SetWordType CPPParser::err3[24] = {0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x10, 0x0,0x0,0x0,0x0,
	0x2,0x4,0x0,0x0, 0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::err4[24] = {0x4,0x8,0x90,0x0, 0x0,0xc,0x13,0x20, 0x0,0x93,0x20,0x82,
	0x80,0xa2,0xc0,0x87, 0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::err5[24] = {0x0,0x0,0x10,0x0, 0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0, 0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::err6[24] = {0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x10, 0x0,0x0,0x0,0x0,
	0x2,0x4,0x0,0x0, 0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::err7[24] = {0xfc,0xff,0xff,0xbf, 0xff,0xff,0x17,0x20, 0x0,0x93,0x20,0x82,
	0x80,0xa2,0xc0,0x87, 0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::err8[24] = {0x14,0x4,0x85,0x1, 0x0,0x5,0x3,0x0, 0x0,0x0,0x20,0x0,
	0x0,0x2,0x0,0x7, 0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::CONSTANT_TOKCLASS_set[24] = {0x0,0x0,0x0,0x0, 0x0,0x0,0xc0,0x0, 0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0, 0x7c,0x0,0x0,0x0, 0x0,0x4,0x0,0x0
	};
SetWordType CPPParser::err10[24] = {0x0,0x0,0x80,0x0, 0x0,0x4,0x2,0x0, 0x0,0x0,0x20,0x0,
	0x0,0x2,0x0,0x0, 0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::setwd1[191] = {0x0,0x0,0x7c,0x20,0x60,0x20,0x20,
	0x20,0x20,0x20,0x60,0x22,0x20,0x20,0x20,
	0x20,0x60,0x20,0x60,0x20,0x22,0x20,0x20,
	0x7c,0x60,0x20,0x20,0x20,0x20,0x20,0x0,
	0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
	0x20,0x60,0x20,0xfc,0x3c,0x20,0x20,0x20,
	0x20,0x7c,0xfc,0x20,0x0,0x3c,0x14,0x0,
	0x0,0x0,0x0,0x0,0x14,0x14,0x3c,0x0,
	0x0,0x0,0x0,0x0,0x0,0x14,0x0,0x0,
	0x14,0x3c,0x3c,0x14,0x0,0x3c,0x0,0x0,
	0x3c,0x14,0x14,0x0,0x0,0x0,0xfc,0x15,
	0x15,0x15,0x3c,0x0,0x0,0x14,0x14,0x0,
	0x3c,0x0,0x14,0x0,0x14,0x0,0x0,0x0,
	0x3c,0x0,0xfc,0x14,0x14,0x0,0x3d,0x14,
	0x3c,0x14,0x0,0x14,0x14,0x14,0x14,0x3c,
	0x3c,0x3c,0x3c,0x3c,0x0,0x0,0x0,0x0,
	0x3c,0x0,0xfc,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0};
SetWordType CPPParser::err11[24] = {0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x20, 0x0,0x0,0x0,0x0,
	0x0,0x80,0x0,0x0, 0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::err12[24] = {0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x0,
	0x0,0x8,0x0,0x0, 0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::err13[24] = {0x4,0x0,0x80,0x0, 0x0,0xc,0x33,0x38, 0x90,0x97,0x23,0xb2,
	0x8a,0xee,0xfd,0x87, 0x2,0x0,0x0,0x20, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::err14[24] = {0x0,0x0,0x10,0x0, 0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::err15[24] = {0x0,0x8,0x10,0x0, 0x0,0x8,0x0,0x0, 0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::setwd2[191] = {0x0,0x0,0x4d,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x20,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x20,0x0,0x0,
	0x5d,0x0,0x1,0x0,0x1,0x0,0x0,0x1,
	0x0,0x0,0x1,0x0,0x1,0x0,0x0,0x0,
	0x0,0x0,0x0,0xdd,0x4c,0x0,0x0,0x0,
	0x0,0x4d,0x5d,0x0,0x0,0xc,0xcd,0x1,
	0x1,0x0,0x0,0x0,0xcd,0xcc,0xce,0x1,
	0x0,0x0,0x0,0x1,0x0,0xcd,0x1,0x0,
	0xcc,0xc,0xc,0xcd,0x0,0xc,0x0,0x0,
	0xc,0xcd,0xcd,0x0,0x0,0x1,0x5d,0x0,
	0x0,0x0,0xc,0x1,0x0,0xcd,0xcd,0x1,
	0xc,0x1,0xcc,0x0,0x4,0x1,0x0,0x0,
	0xc,0x0,0xdd,0xcc,0xcd,0x0,0xc,0xcd,
	0xce,0xcd,0x0,0xcd,0xcd,0xcd,0xcd,0xc,
	0xc,0x5c,0x5c,0x5c,0x0,0x0,0x0,0x0,
	0xc,0x0,0xdd,0x1,0x1,0x1,0x1,0x1,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,
	0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0};
SetWordType CPPParser::err16[24] = {0x4,0x0,0x80,0x0, 0x0,0xc,0x23,0x38, 0x90,0x4,0x23,0x30,
	0x2,0xce,0x3d,0x7, 0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::err17[24] = {0x4,0x0,0x80,0x0, 0x0,0xc,0x3,0x0, 0x0,0x0,0x20,0x0,
	0x0,0x2,0x0,0x7, 0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::err18[24] = {0x4,0x0,0x80,0x0, 0x0,0xc,0x23,0x38, 0x90,0x4,0x23,0x30,
	0x2,0xce,0x3d,0x7, 0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::err19[24] = {0x4,0x0,0x80,0x0, 0x0,0xc,0x33,0x38, 0x90,0x97,0x23,0xb2,
	0x8a,0xee,0xfd,0x87, 0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::err20[24] = {0x4,0x0,0x80,0x0, 0x0,0xc,0x33,0x38, 0x90,0x97,0xe3,0xb3,
	0x8a,0xee,0xfd,0x87, 0x2,0x0,0x0,0x20, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::err21[24] = {0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0, 0x0,0x91,0x0,0x0,
	0x0,0x20,0x0,0x80, 0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::setwd3[191] = {0x0,0x0,0x1c,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x1f,0x14,0x0,0x0,0x0,
	0x0,0x1c,0x1c,0x0,0x0,0xd0,0x13,0x0,
	0x0,0x0,0x0,0x0,0x13,0x13,0x13,0x0,
	0x0,0x0,0x0,0x0,0x0,0x13,0x0,0x0,
	0x13,0x50,0xd0,0x13,0x0,0x50,0x0,0x0,
	0x50,0x13,0x13,0x0,0x0,0x0,0x1c,0x20,
	0x20,0x20,0xd0,0x0,0x0,0x13,0x13,0x0,
	0xd0,0x0,0x13,0x0,0x10,0x0,0x0,0x0,
	0xd0,0x0,0x1f,0x13,0x13,0x0,0x50,0x13,
	0x13,0x13,0x0,0x13,0x13,0x13,0x13,0xd0,
	0xd0,0x1c,0x1c,0x1c,0x0,0x0,0x0,0x0,
	0x50,0x0,0x1f,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0};
SetWordType CPPParser::setwd4[191] = {0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0xc0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x28,0x1c,0x0,
	0x0,0x0,0x0,0x0,0x1c,0x40,0x2a,0x0,
	0x0,0x0,0x0,0x0,0x0,0x1c,0x0,0x0,
	0x40,0x29,0x28,0x1c,0x0,0x29,0x0,0x0,
	0x29,0x1c,0x1c,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x28,0x0,0x0,0x1c,0x1c,0x0,
	0x28,0x0,0x40,0x0,0x0,0x0,0x0,0x0,
	0x28,0x0,0xc0,0x40,0x1c,0x0,0x29,0x1c,
	0x2a,0x1c,0x0,0x1c,0x1c,0x1c,0x1c,0x28,
	0x28,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x29,0x0,0xc0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0};
SetWordType CPPParser::err22[24] = {0x0,0x0,0x0,0x0, 0x0,0x4,0x0,0x10, 0x80,0x0,0x0,0x0,
	0x2,0x6,0x0,0x0, 0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::err23[24] = {0x0,0x0,0x0,0x0, 0x0,0x4,0x20,0x18, 0x90,0x4,0x3,0x30,
	0x2,0x4e,0x3d,0x0, 0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::err24[24] = {0x0,0x0,0x0,0x0, 0x0,0x0,0x10,0x20, 0x0,0x93,0x0,0x82,
	0x80,0xa0,0xc0,0x80, 0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::setwd5[191] = {0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x86,0xc0,0x0,
	0x0,0x0,0x0,0x0,0xc0,0x1,0xaa,0x0,
	0x0,0x0,0x0,0x0,0x0,0xc0,0x0,0x0,
	0x0,0x92,0x86,0xc0,0x0,0x92,0x0,0x0,
	0x92,0xc0,0xc0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x86,0x0,0x0,0xc0,0xc0,0x0,
	0x86,0x0,0x1,0x0,0x0,0x0,0x0,0x0,
	0x86,0x0,0x0,0x1,0xc0,0x0,0x92,0xc0,
	0xaa,0xc0,0x0,0xc0,0xc0,0xc0,0xc0,0x86,
	0x86,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x92,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0};
SetWordType CPPParser::err25[24] = {0x0,0x0,0x0,0x0, 0x0,0x4,0x0,0x10, 0x80,0x0,0x0,0x0,
	0x2,0x6,0x0,0x0, 0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::err26[24] = {0x0,0x0,0x0,0x0, 0x0,0x4,0x20,0x18, 0x90,0x4,0x3,0x30,
	0x2,0x4e,0x3d,0x0, 0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::err27[24] = {0x4,0x0,0x80,0x0, 0x0,0x4,0x3,0x0, 0x0,0x0,0x20,0x0,
	0x0,0x2,0x0,0x0, 0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::setwd6[191] = {0x0,0x0,0x80,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x40,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0xcc,0x0,0x0,0x0,0x0,
	0x0,0x80,0x40,0x0,0x0,0x22,0x1,0x0,
	0x0,0x0,0x0,0x0,0x1,0x14,0x22,0x0,
	0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,
	0x4,0x22,0x22,0x1,0x0,0x22,0x0,0x0,
	0x22,0x1,0x1,0x0,0x0,0x0,0x40,0x0,
	0x0,0x0,0x22,0x0,0x0,0x1,0x1,0x0,
	0x22,0x0,0x14,0x0,0x0,0x0,0x0,0x0,
	0x22,0x0,0x4c,0x14,0x1,0x0,0x22,0x1,
	0x22,0x1,0x0,0x1,0x1,0x1,0x1,0x22,
	0x22,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x22,0x0,0xcc,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0};
SetWordType CPPParser::err28[24] = {0x0,0x0,0x80,0x0, 0x0,0x4,0x2,0x0, 0x0,0x0,0x20,0x0,
	0x0,0x2,0x0,0x0, 0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::err29[24] = {0x0,0x0,0x10,0x0, 0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::err30[24] = {0x10,0x4,0x90,0x0, 0x0,0x8,0x0,0x0, 0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::err31[24] = {0x10,0x4,0x85,0x1, 0x0,0x1,0x0,0x0, 0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::err32[24] = {0x10,0x4,0x85,0x1, 0x0,0x1,0x0,0x0, 0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::err33[24] = {0x0,0x0,0x80,0x0, 0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0, 0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::err34[24] = {0x14,0x4,0x85,0x1, 0x0,0x5,0x1,0x0, 0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0, 0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::err35[24] = {0x4,0x0,0x0,0x0, 0x0,0x4,0x1,0x0, 0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0, 0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::setwd7[191] = {0x0,0x0,0x4,0x0,0x72,0x0,0x0,
	0x0,0x0,0x0,0x72,0x0,0x0,0x0,0x0,
	0x0,0x70,0x0,0x70,0x0,0x0,0x0,0x0,
	0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x70,0x0,0x85,0x2,0x0,0x0,0x0,
	0x0,0x4,0x1,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x8d,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0};
SetWordType CPPParser::err36[24] = {0x4,0x0,0x80,0x4a, 0xa,0x6,0xe3,0x48, 0x34,0x4,0x33,0x74,
	0x11,0x4a,0x3d,0x0, 0x7e,0x0,0x0,0x0, 0x40,0x4,0x0,0x0
	};
SetWordType CPPParser::err37[24] = {0x10,0xc,0x90,0x1, 0x0,0x9,0x0,0x0, 0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::err38[24] = {0x4,0x0,0x90,0x0, 0x0,0xc,0x13,0x20, 0x0,0x93,0x20,0x82,
	0x80,0xa2,0xc0,0x87, 0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::err39[24] = {0x0,0x0,0x10,0x0, 0x0,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0, 0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::err40[24] = {0x10,0x4,0x0,0x0, 0x80,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::ADDITIVE_TOKCLASS_set[24] = {0x0,0x0,0x0,0x2, 0x2,0x0,0x0,0x0};
SetWordType CPPParser::setwd8[191] = {0x0,0x0,0x26,0x0,0x8,0x0,0x0,
	0x0,0x0,0x0,0x48,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,
	0x2e,0x0,0x86,0x0,0x6,0x0,0x0,0x6,
	0x0,0x0,0x86,0x0,0x6,0x0,0x0,0x0,
	0x40,0x8,0x0,0x36,0x28,0x0,0x0,0x0,
	0x0,0x26,0x26,0x0,0x0,0x20,0x6,0x6,
	0x6,0x0,0x0,0x0,0x6,0x0,0x20,0x6,
	0x0,0x0,0x0,0x6,0x0,0x6,0x6,0x0,
	0x0,0x20,0x20,0x6,0x0,0x20,0x0,0x0,
	0x20,0x6,0x6,0x0,0x0,0x6,0x26,0x0,
	0x0,0x0,0x20,0x6,0x0,0x6,0x6,0x6,
	0x20,0x6,0x0,0x0,0x1,0x6,0x0,0x0,
	0x20,0x0,0x26,0x0,0x6,0x0,0x20,0x6,
	0x20,0x6,0x0,0x6,0x6,0x6,0x6,0x20,
	0x20,0x20,0x20,0x20,0x0,0x0,0x0,0x0,
	0x20,0x0,0x37,0x6,0x6,0x6,0x6,0x6,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,
	0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0};
SetWordType CPPParser::ASSIGN_TOKCLASS_set[24] = {0xb0,0x22,0x0,0x24, 0x4,0xa0,0x4,0x0, 0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::err43[24] = {0x4,0x0,0x80,0x4a, 0xa,0x4,0xe3,0x48, 0x34,0x4,0x33,0x74,
	0x11,0x4a,0x3d,0x0, 0x7e,0x0,0x0,0x0, 0x40,0x4,0x0,0x0
	};
SetWordType CPPParser::EQUALITY_TOKCLASS_set[24] = {0x0,0x0,0x2,0x80};
SetWordType CPPParser::err45[24] = {0xfc,0xff,0xff,0xbf, 0xff,0xfb,0x5,0x0, 0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0, 0x40,0x0,0x0,0x0
	};
SetWordType CPPParser::err46[24] = {0x0,0x0,0x0,0x0, 0x0,0x0,0xc0,0x0, 0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0, 0x7c,0x0,0x0,0x0, 0x40,0x4,0x0,0x0
	};
SetWordType CPPParser::MULTIPLICATIVE_TOKCLASS_set[24] = {0x0,0x10,0x0,0x10, 0x0,0x0,0x1,0x0};
SetWordType CPPParser::err48[24] = {0x0,0x0,0x80,0x0, 0x0,0x4,0x20,0x38, 0x90,0x4,0x3,0x30,
	0x2,0xce,0x3d,0x0, 0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::setwd9[191] = {0x0,0x0,0xc2,0x0,0x1,0x1,0x0,
	0x1,0x0,0x1,0x0,0x0,0x10,0x1,0x0,
	0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,
	0x42,0x0,0x42,0x1,0x42,0x10,0x1,0x42,
	0x4,0x0,0x42,0x1,0x42,0x0,0x0,0x0,
	0x0,0x0,0x0,0xe2,0x0,0x0,0x1,0x0,
	0x1,0xd2,0x42,0x1,0x0,0x0,0x62,0x4a,
	0x4a,0x0,0x0,0x0,0x62,0x20,0x20,0x42,
	0x0,0x0,0x0,0x42,0x0,0x62,0x42,0x0,
	0x20,0x0,0x0,0x62,0x0,0x0,0x0,0x0,
	0x0,0x62,0x62,0x0,0x0,0x42,0x42,0x0,
	0x0,0x0,0x0,0x42,0x0,0x62,0x62,0x42,
	0x0,0x42,0x20,0x0,0x0,0x42,0x0,0x0,
	0x0,0x0,0x62,0x20,0x62,0x0,0x0,0x62,
	0x20,0x62,0x0,0x62,0x62,0x62,0x62,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0xe2,0x4a,0x4a,0x4a,0x4a,0x4a,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42,
	0x0,0x0,0x0,0x4a,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0};
SetWordType CPPParser::err49[24] = {0x4,0x0,0x80,0x4a, 0xa,0x6,0xe3,0x48, 0x34,0x4,0x33,0x74,
	0x11,0x4a,0x3d,0x0, 0x7e,0x0,0x0,0x0, 0x40,0x4,0x0,0x0
	};
SetWordType CPPParser::PM_TOKCLASS_set[24] = {0x0,0x80,0x0,0x0, 0x20,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::CAST_TOKCLASS_set[24] = {0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x40, 0x20,0x0,0x0,0x4,
	0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::err52[24] = {0x0,0x0,0x80,0x0, 0x0,0x4,0xe2,0x48, 0x30,0x4,0x23,0x34,
	0x11,0x4a,0x3d,0x0, 0x7e,0x0,0x0,0x0, 0x40,0x4,0x0,0x0
	};
SetWordType CPPParser::setwd10[191] = {0x0,0x0,0x27,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x64,0x0,0x24,0x0,0x24,0x0,0x0,0x24,
	0x0,0x0,0x24,0x0,0x24,0x0,0x8,0x0,
	0x0,0x0,0x0,0x74,0x0,0x0,0x0,0x0,
	0x0,0x27,0x64,0x0,0x0,0x0,0x34,0x64,
	0x64,0x0,0x0,0x0,0x34,0x0,0x0,0xa4,
	0x0,0x0,0x0,0x24,0x0,0x34,0xa4,0x0,
	0x0,0x0,0x0,0x34,0x0,0x0,0x0,0x0,
	0x0,0x34,0x34,0x0,0x0,0x24,0x64,0x0,
	0x0,0x0,0x0,0xa4,0x0,0x34,0x34,0x24,
	0x0,0xa4,0x0,0x0,0x0,0x64,0x0,0x0,
	0x0,0x0,0x74,0x0,0x34,0x0,0x0,0x34,
	0x0,0x34,0x0,0x34,0x34,0x34,0x34,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x74,0x64,0x64,0x64,0x64,0x64,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x64,
	0x0,0x0,0x0,0x64,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0};
SetWordType CPPParser::err53[24] = {0x0,0x40,0x80,0x9, 0x18,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::err54[24] = {0x0,0x0,0x80,0x0, 0x0,0x4,0xc2,0x0, 0x0,0x0,0x20,0x0,
	0x10,0x2,0x0,0x0, 0x7e,0x0,0x0,0x0, 0x40,0x4,0x0,0x0
	};
SetWordType CPPParser::RELATIONAL_TOKCLASS_set[24] = {0x0,0x0,0x6c,0x0};
SetWordType CPPParser::SHIFT_TOKCLASS_set[24] = {0x0,0x0,0x0,0x0, 0x0,0x50,0x0,0x0};
SetWordType CPPParser::UNARYOP_TOKCLASS_set[24] = {0x4,0x0,0x0,0x4a, 0xa,0x0,0x3,0x0, 0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::setwd11[191] = {0x0,0x0,0x82,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,
	0x0,0x0,0x0,0x10,0x10,0x0,0x10,0x10,
	0x43,0x1,0x82,0x0,0x83,0x0,0x0,0x82,
	0x0,0x0,0x82,0x0,0x83,0x1,0x0,0x0,
	0x0,0x0,0x0,0x46,0x0,0x20,0x0,0x20,
	0x0,0x82,0xc6,0x0,0x0,0x0,0x42,0x4a,
	0x4a,0x0,0x0,0x0,0x42,0x0,0x0,0x42,
	0x0,0x0,0x0,0x2,0x0,0x42,0x42,0x0,
	0x0,0x0,0x0,0x42,0x0,0x0,0x0,0x0,
	0x0,0x42,0x42,0x0,0x0,0x2,0x46,0x0,
	0x0,0x0,0x0,0x42,0x0,0x42,0x42,0x2,
	0x0,0x42,0x0,0x0,0x0,0x42,0x0,0x0,
	0x0,0x0,0x46,0x0,0x42,0x0,0x0,0x42,
	0x0,0x42,0x0,0x42,0x42,0x42,0x42,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x46,0x4a,0x4a,0x4a,0x4a,0x4a,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,
	0x0,0x0,0x0,0x4a,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0};
SetWordType CPPParser::err58[24] = {0x4,0x0,0x80,0x4a, 0xa,0x4,0xe3,0x48, 0x34,0x4,0x33,0x74,
	0x11,0x4a,0x3d,0x0, 0x7e,0x0,0x0,0x0, 0x40,0x4,0x0,0x0
	};
SetWordType CPPParser::err59[24] = {0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0, 0x4,0x0,0x10,0x0,
	0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::err60[24] = {0x4,0x0,0x80,0x4a, 0xa,0x4,0xe3,0x48, 0x34,0x4,0x33,0x74,
	0x11,0x4a,0x3d,0x0, 0x7e,0x0,0x0,0x0, 0x40,0x4,0x0,0x0
	};
SetWordType CPPParser::CURLY_TOKCLASS_set[24] = {0xfc,0xff,0xef,0xff, 0x7f,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,
	0xff,0xff,0xff,0xff, 0xff,0xff,0xff,0xff, 0xff,0x7,0x0,0x0
	};
SetWordType CPPParser::err62[24] = {0x4,0x0,0x90,0x4a, 0xa,0x4,0xe3,0x48, 0x34,0x4,0x33,0x74,
	0x11,0x4a,0x3d,0x0, 0x7e,0x0,0x0,0x0, 0x40,0x4,0x0,0x0
	};
SetWordType CPPParser::RCURLY_EOF_TOKCLASS_set[24] = {0xfc,0xff,0xff,0xff, 0x7f,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,
	0xff,0xff,0xff,0xff, 0xff,0xff,0xff,0xff, 0xff,0x7,0x0,0x0
	};
SetWordType CPPParser::err64[24] = {0xfc,0xff,0xff,0xff, 0x7f,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,
	0xff,0xff,0xff,0xff, 0xff,0xff,0xff,0xff, 0xff,0x7,0x0,0x0
	};
SetWordType CPPParser::setwd12[191] = {0x0,0x0,0xfd,0xac,0xac,0xac,0xac,
	0xac,0xac,0xac,0xac,0xac,0xac,0xac,0xac,
	0xac,0xac,0xac,0xac,0xac,0xa4,0xac,0xac,
	0xfd,0xac,0xbd,0xac,0xbd,0xac,0xac,0xbd,
	0xac,0xac,0xbd,0xac,0xbd,0xac,0xac,0xac,
	0x0,0xac,0xac,0xff,0xec,0xac,0xac,0xac,
	0xac,0xfd,0xfd,0xac,0xac,0xec,0xfd,0xbd,
	0xbd,0xac,0xac,0xac,0xfd,0xec,0xec,0xbd,
	0xac,0xac,0xac,0xbf,0xac,0xfd,0xbd,0xac,
	0xec,0xec,0xec,0xfd,0xac,0xec,0xac,0xac,
	0xec,0xfd,0xfd,0xac,0xac,0xbf,0xfd,0xac,
	0xac,0xac,0xec,0xbd,0xac,0xfd,0xfd,0xbd,
	0xec,0xbd,0xec,0xac,0xec,0xbd,0xac,0xac,
	0xec,0xac,0xfd,0xec,0xfd,0xac,0xec,0xfd,
	0xec,0xfd,0xac,0xfd,0xfd,0xfd,0xfd,0xec,
	0xec,0xec,0xec,0xec,0xac,0xac,0xac,0xac,
	0xec,0xac,0xfd,0xbd,0xbd,0xbd,0xbd,0xbd,
	0xac,0xac,0xac,0xac,0xac,0xac,0xac,0xac,
	0xac,0xac,0xac,0xac,0xac,0xac,0xac,0xac,
	0xac,0xac,0xac,0xac,0xac,0xac,0xec,0xac,
	0xac,0xac,0xac,0xac,0xac,0xac,0xac,0xbd,
	0xac,0xac,0xac,0xbd,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0};
SetWordType CPPParser::err65[24] = {0x4,0x0,0x90,0x0, 0x0,0xc,0x33,0x38, 0x90,0x97,0x23,0xb2,
	0x8a,0xee,0xfd,0x87, 0x2,0x0,0x0,0x20, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::OPTOR_SIMPLE_TOKCLASS_set[24] = {0xfc,0x37,0x6e,0xfe, 0x3f,0xf0,0x7,0x0};
SetWordType CPPParser::err67[24] = {0xfc,0x37,0xee,0xff, 0x3f,0xf0,0x7,0x0, 0x4,0x0,0x10,0x0,
	0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::err68[24] = {0x0,0x0,0x1,0x0, 0x0,0x4,0x30,0x38, 0x90,0x97,0x3,0xb2,
	0x82,0xee,0xfd,0x80, 0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::setwd13[191] = {0x0,0x0,0x1f,0x10,0x10,0x10,0x10,
	0x10,0x10,0x10,0x50,0x0,0x10,0x10,0x0,
	0x0,0x40,0x10,0x10,0x10,0x0,0x10,0x10,
	0x1,0x0,0x10,0x10,0x10,0x10,0x10,0x10,
	0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x0,
	0x0,0x80,0x0,0x23,0x1,0x10,0x10,0x10,
	0x10,0x1f,0x11,0x10,0x0,0x21,0x21,0x0,
	0x0,0x0,0x0,0x0,0x21,0x21,0x21,0x0,
	0x0,0x0,0x0,0x0,0x0,0x21,0x0,0x0,
	0x21,0x21,0x21,0x21,0x0,0x21,0x0,0x0,
	0x21,0x21,0x21,0x0,0x0,0x0,0x1,0x0,
	0x0,0x0,0x21,0x0,0x0,0x21,0x21,0x0,
	0x21,0x0,0x21,0x0,0x1,0x0,0x0,0x0,
	0x21,0x0,0x21,0x21,0x21,0x0,0x21,0xa1,
	0x21,0x21,0x0,0x21,0x21,0x21,0x21,0x21,
	0x21,0x1,0x1,0x1,0x0,0x0,0x0,0x0,
	0x21,0x0,0x23,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0};
SetWordType CPPParser::err69[24] = {0x0,0x0,0x1,0x0, 0x0,0x5,0x30,0x38, 0x90,0x97,0x3,0xb2,
	0x82,0xee,0xfd,0x80, 0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::err70[24] = {0xfc,0xff,0xff,0xff, 0xff,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,
	0xff,0xff,0xff,0xff, 0xff,0xff,0xff,0x7f, 0xff,0x7,0x0,0x0
	};
SetWordType CPPParser::err71[24] = {0xfc,0xff,0xff,0xbf, 0xff,0xfb,0x5,0x0, 0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::err72[24] = {0xfc,0x37,0xee,0xff, 0x3f,0xf4,0x27,0x38, 0x94,0x4,0x13,0x30,
	0x2,0xce,0x3d,0x0, 0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::err73[24] = {0x0,0x0,0x0,0x0, 0x0,0x0,0x2,0x0, 0x0,0x0,0x20,0x0,
	0x0,0x0,0x0,0x0, 0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::err74[24] = {0xfc,0xff,0xff,0xbf, 0xff,0xff,0x17,0x20, 0x0,0x93,0x20,0x82,
	0x80,0xa2,0xc0,0x87, 0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::err75[24] = {0x0,0x0,0x20,0x0, 0x0,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::setwd14[191] = {0x0,0x0,0x5a,0x5a,0x5a,0x5a,0x5a,
	0x5a,0x5a,0x5a,0x5a,0x4a,0x5a,0x5a,0x4a,
	0x4a,0x4b,0x5a,0x5a,0x5a,0x4a,0x5a,0x5a,
	0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x12,
	0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x4a,
	0x4a,0x4a,0x4a,0x63,0x4a,0x5a,0x5a,0x5a,
	0x5a,0x5a,0x56,0x5a,0x2,0x43,0x23,0x2,
	0x2,0x2,0x2,0x2,0x23,0x23,0x63,0x2,
	0x2,0x2,0x2,0x12,0x2,0x23,0x2,0x2,
	0x23,0x43,0x43,0x23,0x2,0x43,0x2,0x2,
	0x43,0x23,0x23,0x2,0x2,0x12,0x42,0x2,
	0x2,0x2,0x43,0x2,0x2,0x23,0x23,0x2,
	0x43,0x2,0x23,0x2,0x82,0x2,0x2,0x2,
	0x43,0x2,0x63,0x23,0x23,0x2,0x43,0x23,
	0x63,0x23,0x2,0x23,0x23,0x23,0x23,0x43,
	0x43,0x42,0x42,0x42,0x2,0x2,0x2,0x2,
	0x43,0x2,0xe7,0x2,0x2,0x2,0x2,0x2,
	0x2,0x2,0x2,0x2,0x2,0x2,0x2,0x2,
	0x2,0x2,0x2,0x2,0x2,0x2,0x2,0x2,
	0x2,0x2,0x2,0x2,0x2,0x2,0x2,0x2,
	0x0,0x2,0x2,0x2,0x2,0x2,0x2,0x2,
	0x2,0x2,0x2,0x2,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0};
SetWordType CPPParser::err76[24] = {0x0,0x0,0x0,0x0, 0x0,0x4,0x20,0x8, 0x10,0x4,0x3,0x30,
	0x0,0x4a,0x3d,0x0, 0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::setwd15[191] = {0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x40,0x0,0x2,0x0,
	0x0,0x20,0x80,0x0,0x2,0x0,0x0,0x0,
	0x20,0x80,0x0,0x0,0x10,0x2,0x0,0x0,
	0x0,0x0,0x0,0x2,0x10,0x0,0x20,0x8,
	0x0,0x2,0x2,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x20,0x2,0x2,0x0,
	0x0,0x0,0x0,0x8,0x1,0x0,0x0,0x0,
	0x0,0x0,0x4,0x0,0x2,0x0,0x0,0x2,
	0x0,0x2,0x10,0x2,0x2,0x2,0x2,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x40,0x85,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0};
SetWordType CPPParser::err77[24] = {0x4,0x0,0x90,0x4a, 0xa,0xc,0xfb,0xfb, 0xbd,0xff,0x33,0xfe,
	0xf7,0xee,0xff,0x80, 0x7f,0x0,0x0,0x0, 0x40,0x4,0x0,0x0
	};
SetWordType CPPParser::err78[24] = {0x0,0x0,0x0,0x0, 0x0,0x0,0x8,0x0, 0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0, 0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::err79[24] = {0xfc,0xff,0xff,0xff, 0x7f,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,
	0xff,0xff,0xff,0xff, 0xff,0xff,0xff,0xff, 0xff,0x7,0x0,0x0
	};
SetWordType CPPParser::CURLY_SEMICOLON_TOKCLASS_set[24] = {0xfc,0xff,0xef,0xff, 0x7f,0xf7,0xff,0xff, 0xff,0xff,0xff,0xff,
	0xff,0xff,0xff,0xff, 0xff,0xff,0xff,0xff, 0xff,0x7,0x0,0x0
	};
SetWordType CPPParser::err81[24] = {0xfc,0xff,0xff,0xff, 0xff,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,
	0xff,0xff,0xff,0xff, 0xff,0xff,0xff,0xff, 0xff,0x7,0x0,0x0
	};
SetWordType CPPParser::setwd16[191] = {0x0,0x0,0xfe,0x38,0x38,0x38,0x38,
	0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,
	0x38,0x38,0x38,0x38,0x38,0x58,0x38,0x38,
	0xfe,0x38,0x7e,0x38,0x7e,0x38,0x38,0x7e,
	0x38,0x38,0x7e,0x38,0x7e,0x38,0x38,0x38,
	0x10,0x38,0x38,0xff,0x5a,0x38,0x38,0x38,
	0x38,0xfe,0xfe,0x38,0x78,0x79,0x7f,0x7e,
	0x7e,0x78,0x78,0x38,0x7f,0x79,0x79,0x7e,
	0x78,0x78,0x38,0x7e,0x78,0x7f,0x7e,0x38,
	0x79,0x79,0x79,0x7f,0x78,0x79,0x78,0x78,
	0x79,0x7f,0x7f,0x38,0x38,0x7e,0xfe,0x38,
	0x38,0x38,0x79,0x7e,0x78,0x7f,0x7f,0x7e,
	0x79,0x7e,0x79,0x78,0x38,0x7e,0x78,0x78,
	0x79,0x38,0xff,0x79,0x7f,0x38,0x79,0x7f,
	0x79,0x7f,0x78,0x7f,0x7f,0x7f,0x7f,0x79,
	0x79,0xb8,0xb8,0xb8,0x38,0x38,0x38,0x38,
	0x79,0x78,0xff,0x7e,0x7e,0x7e,0x7e,0x7e,
	0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,
	0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,
	0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,
	0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x7e,
	0x38,0x38,0x38,0x7e,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0};
SetWordType CPPParser::err82[24] = {0x0,0x0,0x1,0x0, 0x0,0x4,0x30,0x38, 0x90,0x97,0x3,0xb2,
	0x82,0xee,0xfd,0x80, 0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::err83[24] = {0x4,0x0,0x80,0x4a, 0xa,0xc,0xf3,0x78, 0xb4,0x97,0x33,0xf6,
	0x93,0xee,0xfd,0x80, 0x7e,0x0,0x0,0x0, 0x40,0x4,0x0,0x0
	};
SetWordType CPPParser::err84[24] = {0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0, 0x8,0x8,0x0,0x0,
	0x0,0x0,0x2,0x0, 0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::err85[24] = {0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x81, 0x0,0x20,0x0,0x8,
	0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::err86[24] = {0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x2, 0x1,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0, 0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::err87[24] = {0x4,0x0,0x90,0x4a, 0x8a,0xc,0xfb,0xfb, 0xbd,0xff,0x33,0xfe,
	0xf7,0xee,0xff,0x80, 0x7f,0x0,0x0,0x0, 0x40,0x4,0x0,0x0
	};
SetWordType CPPParser::err88[24] = {0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0, 0x0,0x40,0x0,0x0,
	0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::setwd17[191] = {0x0,0x0,0xfc,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x80,0x0,0x0,
	0xfc,0x0,0xfc,0x0,0xfc,0x0,0x0,0xfc,
	0x0,0x0,0xfc,0x0,0xfc,0x0,0x0,0x0,
	0x0,0x0,0x0,0xff,0x84,0x0,0x0,0x0,
	0x0,0xfc,0xfc,0x0,0x80,0x83,0xff,0xfc,
	0xfc,0x80,0x80,0x0,0xff,0x83,0x83,0xfc,
	0x80,0x80,0x0,0xfc,0x80,0xff,0xfc,0x0,
	0x83,0x83,0x83,0xff,0x80,0x83,0x80,0x80,
	0x83,0xff,0xff,0x0,0x0,0xfc,0xfc,0x0,
	0x0,0x0,0x83,0xfc,0x80,0xff,0xff,0xfc,
	0x83,0xfc,0x83,0x80,0x0,0xfc,0x80,0x80,
	0x83,0x0,0xff,0x83,0xff,0x0,0x83,0xff,
	0x83,0xff,0x80,0xff,0xff,0xff,0xff,0x83,
	0x83,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x83,0x80,0xff,0xfc,0xfc,0xfc,0xfc,0xfc,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,
	0x0,0x0,0x0,0xfc,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0};
SetWordType CPPParser::err89[24] = {0x0,0x0,0x0,0x0, 0x0,0x0,0x10,0x0, 0x0,0x2,0x0,0x82,
	0x80,0x0,0xc0,0x0, 0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::err90[24] = {0x4,0x0,0x80,0x4a, 0xa,0x4,0xe3,0x78, 0xb4,0x4,0x33,0x74,
	0x13,0xce,0x3d,0x0, 0x7e,0x0,0x0,0x0, 0x40,0x4,0x0,0x0
	};
SetWordType CPPParser::err91[24] = {0x4,0x0,0x80,0x0, 0x0,0x4,0x33,0x38, 0x90,0x97,0x23,0xb2,
	0x8a,0xee,0xfd,0x87, 0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::err92[24] = {0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x10, 0x0,0x0,0x0,0x0,
	0x2,0x4,0x0,0x0, 0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::err93[24] = {0x0,0x8,0x10,0x0, 0x0,0x8,0x0,0x0, 0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::setwd18[191] = {0x0,0x0,0x55,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x20,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x20,0x0,0x0,
	0xd5,0x0,0x5,0x0,0x5,0x0,0x0,0x5,
	0x0,0x0,0x5,0x0,0x5,0x0,0x0,0x0,
	0x0,0x0,0x0,0xd7,0x40,0x0,0x0,0x0,
	0x0,0x55,0xd5,0x0,0x0,0x50,0x57,0x5,
	0x5,0x0,0x0,0x0,0x57,0x5a,0x52,0x5,
	0x0,0x0,0x0,0x5,0x0,0x57,0x5,0x0,
	0x52,0x50,0x50,0x57,0x0,0x50,0x0,0x0,
	0x50,0x57,0x57,0x0,0x0,0x5,0xd5,0x40,
	0x40,0x40,0x50,0x5,0x0,0x57,0x57,0x5,
	0x50,0x5,0x5a,0x0,0x40,0x5,0x0,0x0,
	0x50,0x0,0xd7,0x5a,0x57,0x0,0x50,0x57,
	0x52,0x57,0x0,0x57,0x57,0x57,0x57,0x50,
	0x50,0xd0,0xd0,0xd0,0x0,0x0,0x0,0x0,
	0x50,0x0,0xd7,0x5,0x5,0x5,0x5,0x5,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,
	0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0};
SetWordType CPPParser::err94[24] = {0x4,0x0,0x80,0x0, 0x0,0x4,0x23,0x38, 0x90,0x4,0x23,0x30,
	0x2,0xce,0x3d,0x7, 0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::err95[24] = {0x0,0x0,0x10,0x0, 0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::err96[24] = {0x10,0x0,0x90,0x0, 0x0,0x8,0x0,0x0, 0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::err97[24] = {0x4,0x0,0x80,0x0, 0x0,0x4,0x23,0x38, 0x90,0x4,0x23,0x30,
	0x2,0xce,0x3d,0x7, 0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::err98[24] = {0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x10, 0x0,0x0,0x0,0x0,
	0x0,0x2,0x0,0x0, 0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::setwd19[191] = {0x0,0x0,0xa,0x0,0x10,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0xf,0x10,0x0,0x0,0x0,
	0x0,0xa,0xb,0x0,0x0,0x0,0x6,0x0,
	0x0,0x0,0x0,0x0,0x6,0xe6,0x6,0x0,
	0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
	0x6,0x0,0x0,0x6,0x0,0x0,0x0,0x0,
	0x0,0x6,0x6,0x0,0x0,0x0,0xb,0x0,
	0x0,0x0,0x0,0x0,0x0,0x6,0x6,0x0,
	0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0xef,0x6,0x6,0x0,0x0,0x6,
	0x6,0x6,0x0,0x6,0x6,0x6,0x6,0x0,
	0x0,0xb,0xb,0xb,0x0,0x0,0x0,0x0,
	0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0};
SetWordType CPPParser::err99[24] = {0x0,0x0,0x0,0x0, 0x0,0x4,0x20,0x38, 0x90,0x4,0x3,0x30,
	0x2,0xce,0x3d,0x0, 0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::err100[24] = {0xfc,0xff,0xff,0xff, 0xff,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,
	0xff,0xff,0xff,0xff, 0xff,0xff,0xff,0xff, 0xff,0x7,0x0,0x0
	};
SetWordType CPPParser::err101[24] = {0xfc,0xff,0xff,0xff, 0xff,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,
	0xff,0xff,0xff,0xff, 0xff,0xff,0xff,0xff, 0xff,0x7,0x0,0x0
	};
SetWordType CPPParser::setwd20[191] = {0x0,0x0,0x1c,0x14,0x14,0x14,0x14,
	0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
	0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
	0x1c,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
	0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
	0x14,0x14,0x14,0x1f,0x1c,0x14,0x14,0x14,
	0x14,0x1c,0x1c,0x14,0x14,0x1c,0x1f,0x14,
	0x14,0x14,0x14,0x14,0x1f,0x1f,0x1f,0x14,
	0x14,0x14,0x14,0x14,0x14,0x1f,0x14,0x14,
	0x1f,0x1c,0x1c,0x1f,0x14,0x1c,0x14,0x14,
	0x1c,0x1f,0x1f,0x14,0x14,0x14,0x1c,0x14,
	0x14,0x14,0x1c,0x14,0x14,0x1f,0x1f,0x14,
	0x1c,0x14,0x1f,0x14,0x1c,0x14,0x14,0x14,
	0x1c,0x14,0x1f,0x1f,0x1f,0x14,0x1c,0x1f,
	0x1f,0x1f,0x14,0x1f,0x1f,0x1f,0x1f,0x1c,
	0x1c,0x1c,0x1c,0x1c,0x14,0x14,0x14,0x14,
	0x1c,0x14,0x1f,0x14,0x14,0x14,0x14,0x14,
	0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
	0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
	0x14,0x14,0x14,0x14,0x14,0x14,0x1c,0x14,
	0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
	0x14,0x14,0x14,0x14,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0};
SetWordType CPPParser::EXTERNAL_SYNC_TOKCLASS_set[24] = {0x2,0x0,0x0,0x0, 0x80,0x8,0x0,0x0};
SetWordType CPPParser::EXTERNAL_SYNC2_TOKCLASS_set[24] = {0x0,0x0,0x0,0x0, 0x80,0x0,0x0,0x0};
SetWordType CPPParser::MEMBER_SYNC_TOKCLASS_set[24] = {0x2,0x0,0x0,0x0, 0x80,0x8,0x0,0x0};
SetWordType CPPParser::STATEMENT_SYNC_TOKCLASS_set[24] = {0x2,0x0,0x10,0x0, 0x80,0x8,0x0,0x0, 0x0,0x0,0x0,0x0,
	0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};
SetWordType CPPParser::DECLSPEC_DECLARATOR_AMBIG_TOKCLASS_set[24] = {0x0,0x0,0x0,0x0, 0x0,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,
	0x0,0x2,0x0,0x0, 0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0
	};

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions