]> git.stg.codes - stg.git/blobdiff - stglibs/srvconf.lib/parsers/chg_user.h
Use simple parser fro CHG_ADMIN.
[stg.git] / stglibs / srvconf.lib / parsers / chg_user.h
index 63c528d018142b8d61cb5ad11d9f89bf8ba7aadb..6bc76fde869bc00cfe22f5efd5d9b858dd544b62 100644 (file)
@@ -22,7 +22,7 @@
 #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"
 
@@ -34,13 +34,12 @@ namespace CHG_USER
 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;