From: <net...@us...> - 2003-04-29 10:29:20
|
Update of /cvsroot/cpptool/rfta/include/rfta/parser In directory sc8-pr-cvs1:/tmp/cvs-serv22786/include/rfta/parser Modified Files: ASTNodes.h Log Message: -- added special ASTNodeType for unparsable declarations. Index: ASTNodes.h =================================================================== RCS file: /cvsroot/cpptool/rfta/include/rfta/parser/ASTNodes.h,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** ASTNodes.h 28 Apr 2003 20:41:35 -0000 1.18 --- ASTNodes.h 29 Apr 2003 10:29:16 -0000 1.19 *************** *** 17,20 **** --- 17,23 ---- { public: + // node for unknown constructs: + static const ASTNodeType unknownConstruct; + // A source file (.cpp or .h) static const ASTNodeType source; |