home *** CD-ROM | disk | FTP | other *** search
- /***************************************************************************
- * file_parser.h - header for the corresponding cpp file
- *
- * Copyright (C) 2005 - 2008 Florian Richter
- ***************************************************************************/
- /*
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 3 of the License, or
- (at your option) any later version.
-
- You should have received a copy of the GNU General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
- #ifndef SMC_FILE_PARSER_H
- #define SMC_FILE_PARSER_H
-
- #include "../core/globals.h"
-
- /* *** *** *** *** *** *** *** *** cFile_parser *** *** *** *** *** *** *** *** *** */
-
- // Base class for parsing text files
- class cFile_parser
- {
- public:
- cFile_parser( void );
- virtual ~cFile_parser( void );
-
- // Function: Parse
- // Parses the given file
- bool Parse( string &filename );
-
- // Function: Parse_Line
- // Parses a line of a description file into string parts
- bool Parse_Line( string command, int line );
-
- // Function: HandleMessage
- // Handles the File Line
- virtual bool HandleMessage( string *parts, unsigned int count, unsigned int line );
-
- // data filename
- string data_file;
- // data error count
- unsigned int error_count;
- };
-
- #endif
-
-