#include <FileParser.h>
Inheritance diagram for FileParser:
Public Member Functions | |
FileParser (const std::string &file) | |
Ctor. | |
virtual | ~FileParser () |
Dtor. | |
bool | Parse () |
Perform the parse. | |
Protected Member Functions | |
virtual int | Yyparse (const std::string &path) |
The native routine that does the actual parsing. | |
Protected Attributes | |
std::string | file |
The file of interest. |
Definition at line 14 of file C++/Common/Parser/FileParser.h.
FileParser::FileParser | ( | const std::string & | file | ) |
Ctor.
virtual FileParser::~FileParser | ( | ) | [virtual] |
Dtor.
bool FileParser::Parse | ( | ) | [virtual] |
Perform the parse.
Reimplemented from Parser.
Reimplemented in CommonEnviromentParser.
virtual int FileParser::Yyparse | ( | const std::string & | path | ) | [protected, virtual] |
The native routine that does the actual parsing.
This routine will usually ultimately be the "yyparse()" generated by bison.
path | The fully qualified path name of the file of interest. |
std::string FileParser::file [protected] |