bool ParseFile(const char* pfilename, FileOpenerBase* pfo, ParserHandler* pparseHandler);
ParseFile parses a file and directs callbacks to the provided handler.
|
Parameters |
Description |
|
const char* pfilename |
Pointer to filename to parse. |
|
FileOpenerBase* pfo |
Pointer to the interface which opens the file. |
|
ParserHandler* pparseHandler |
Pointer to the parser handler/DOM builder. |
A Boolean value of true if the file is parsed and returns false if the file is not found or is empty.