From: <net...@us...> - 2003-04-28 11:04:00
|
Update of /cvsroot/cpptool/rfta/include/rfta/parser In directory sc8-pr-cvs1:/tmp/cvs-serv9381/include/rfta/parser Modified Files: ParserTools.h Log Message: -- added identifier reader Index: ParserTools.h =================================================================== RCS file: /cvsroot/cpptool/rfta/include/rfta/parser/ParserTools.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** ParserTools.h 26 Apr 2003 21:11:30 -0000 1.4 --- ParserTools.h 28 Apr 2003 11:03:56 -0000 1.5 *************** *** 6,9 **** --- 6,10 ---- #include <stdexcept> #include <string> + #include <set> *************** *** 163,166 **** --- 164,170 ---- }; + bool RFTAPARSER_API tryReadIdentifier( Xtl::CStringEnumerator &enumerator, Xtl::CStringView& identifier ); + + std::string RFTAPARSER_API tryReadKeyword( Xtl::CStringEnumerator &enumerator, std::set< std::string > keywords ); } // namespace ParserTools |