class PARSER: public STG::PARSER
{
public:
- PARSER();
+ PARSER(CALLBACK f, void * data, const std::string & encoding);
int ParseStart(const char * el, const char ** attr);
void ParseEnd(const char * el);
- void SetCallback(CALLBACK f, void * data);
+ void Failure(const std::string & reason) { callback(false, reason, info, data); }
private:
CALLBACK callback;
void * data;
+ std::string encoding;
int depth;
bool parsingAnswer;
INFO info;