#ifndef __STG_STGLIBS_SRVCONF_PARSER_CHG_USER_H__
#define __STG_STGLIBS_SRVCONF_PARSER_CHG_USER_H__
-#include "parser.h"
+#include "base.h"
#include "stg/servconf_types.h"
class PARSER: public STG::PARSER
{
public:
- PARSER();
+ PARSER(SIMPLE::CALLBACK f, void * data);
int ParseStart(const char * el, const char ** attr);
void ParseEnd(const char * el);
- void SetCallback(CALLBACK f, void * data);
private:
- CALLBACK callback;
+ SIMPLE::CALLBACK callback;
void * data;
int depth;