#include <Parser.H>
Inheritance diagram for Parser:
Public Member Functions | |
Parser () | |
The Constructor. | |
virtual | ~Parser () |
The Destructor. | |
virtual list< Event > | parseEvents ()=0 |
Parses a website, and returns a list of partially-formed Event objects. | |
virtual list< Event > | parseEvents_t (int param1, int param2)=0 |
Parses a website, and returns a list of partially-formed Event objects. |
|
Parses a website, and returns a list of partially-formed Event objects. Content of Events depend on amount of information found. In case of some sort of failure, returns an empty list, or the list of Events found prior to failure. This function calls just calls parseEvents_t with default parameters.
Implemented in ParserTurnToTen, and ParserYahoo. |
|
Parses a website, and returns a list of partially-formed Event objects. Content of Events depend on amount of information found. In case of some sort of failure, returns an empty list, or the list of Events found prior to failure. Given 2 parameters, in case a subclass has a particular need of them.
Implemented in ParserTurnToTen, and ParserYahoo. |