From: Tom H. <tom...@us...> - 2003-03-24 18:41:18
|
Update of /cvsroot/rccparser/rccparser/src In directory sc8-pr-cvs1:/tmp/cvs-serv12191/src Modified Files: rccparser.h Log Message: 2003-03-24 Tom Howard <tom...@us...> * ./rccparser.ncb * ./rccparser.opt * ./rccparser/rccparser.dsp * ./rccparser/rccparser.plg * ./rccptest/rccptest.dsp * ./rccptest/rccptest.plg * ./src/rccparser.h Fixed VC++ compilation problems Index: rccparser.h =================================================================== RCS file: /cvsroot/rccparser/rccparser/src/rccparser.h,v retrieving revision 1.30 retrieving revision 1.31 diff -C2 -d -r1.30 -r1.31 *** rccparser.h 24 Mar 2003 18:15:21 -0000 1.30 --- rccparser.h 24 Mar 2003 18:41:11 -0000 1.31 *************** *** 485,489 **** bool parseCLang( const char* message ) ! { M_parser.parseCLang( message ); } void --- 485,489 ---- bool parseCLang( const char* message ) ! { return M_parser.parseCLang( message ); } void *************** *** 1640,1643 **** --- 1640,1647 ---- {} + #ifdef DOXYGEN_ONLY + /* The following functions are actually inherited from rcss::Parser, + but I cannot find a way to document them as such. */ + //! \name Parsing Functions //@{ *************** *** 1652,1659 **** */ bool ! parse( std::istream& strm ) ! { ! rcss::Parser::parse( strm ); ! } /** Secondary parsing function. --- 1656,1660 ---- */ bool ! parse( std::istream& strm ); /** Secondary parsing function. *************** *** 1669,1677 **** */ bool ! parse( const std::string& file ) ! { ! rcss::Parser::parse( file ); ! } //@} protected: /** This function is called every time a message has been parsed. --- 1670,1676 ---- */ bool ! parse( const std::string& file ); //@} + #endif protected: /** This function is called every time a message has been parsed. |