]> git.stg.codes - stg.git/commitdiff
Removed "stg" prefix from inclusion of parser.h
authorMaxim Mamontov <faust.madf@gmail.com>
Sat, 10 Aug 2013 19:55:38 +0000 (22:55 +0300)
committerMaxim Mamontov <faust.madf@gmail.com>
Sat, 10 Aug 2013 19:55:38 +0000 (22:55 +0300)
stglibs/srvconf.lib/include/stg/parser_auth_by.h
stglibs/srvconf.lib/include/stg/parser_check_user.h
stglibs/srvconf.lib/include/stg/parser_get_user.h
stglibs/srvconf.lib/include/stg/parser_get_users.h
stglibs/srvconf.lib/include/stg/parser_server_info.h
stglibs/srvconf.lib/include/stg/servconf.h

index b9f33cf319678a008dbffee4d58a9213fcef03d0..aa3ea7bcd3a02c7e736fa52d119c9029ecd94fc6 100644 (file)
@@ -21,7 +21,7 @@
 #ifndef __STG_STGLIBS_SRVCONF_PARSER_AUTH_BY_H__
 #define __STG_STGLIBS_SRVCONF_PARSER_AUTH_BY_H__
 
-#include "stg/parser.h"
+#include "parser.h"
 
 #include <vector>
 #include <string>
index 55d5531edfb7429c59ff2c8d4f32283acc28a4da..8088a0c0718f1863d1caefac6b52682ac8150f9c 100644 (file)
@@ -22,7 +22,7 @@
 #ifndef __STG_STGLIBS_SRVCONF_PARSER_CHECK_USER_H__
 #define __STG_STGLIBS_SRVCONF_PARSER_CHECK_USER_H__
 
-#include "stg/parser.h"
+#include "parser.h"
 
 class PARSER_CHECK_USER: public PARSER
 {
index db074af48213e78a2da5558bc3cf5ab9b1ffe179..7b6032e094a10529ed10ba23d52f2414d4641416 100644 (file)
@@ -22,7 +22,7 @@
 #ifndef __STG_STGLIBS_SRVCONF_PARSER_GET_USER_H__
 #define __STG_STGLIBS_SRVCONF_PARSER_GET_USER_H__
 
-#include "stg/parser.h"
+#include "parser.h"
 
 #include "stg/os_int.h"
 #include "stg/const.h"
index b35aa48c486b0ff1e3692c94716f097c66b9908d..5338a91357e8978ae4ee3a52e3fd1cec2ff0c012 100644 (file)
@@ -23,7 +23,7 @@
 #ifndef __STG_STGLIBS_SRVCONF_PARSER_GET_USERS_H__
 #define __STG_STGLIBS_SRVCONF_PARSER_GET_USERS_H__
 
-#include "stg/parser.h"
+#include "parser.h"
 
 #include "parser_get_user.h"
 
index 38e87186f95cbabbaf0fa7fdc6e8a38f3df4532a..ce7a70ae946bb76884979c72f065f0ca20b8a52f 100644 (file)
@@ -22,7 +22,7 @@
 #ifndef __STG_STGLIBS_SRVCONF_PARSER_SERVER_INFO_H__
 #define __STG_STGLIBS_SRVCONF_PARSER_SERVER_INFO_H__
 
-#include "stg/parser.h"
+#include "/parser.h"
 
 #include "stg/const.h"
 
index f455730e2be0cf18fd7f664233ac981be8327c4c..fddbcf7a32629f4ec3cf0820a69bbab3ba330efd 100644 (file)
@@ -58,21 +58,6 @@ struct ADMINDATA
     char login[ADM_LOGIN_LEN];
 };
 //-----------------------------------------------------------------------------
-class PARSER_CHG_USER: public PARSER
-{
-public:
-    PARSER_CHG_USER();
-    int  ParseStart(const char *el, const char **attr);
-    void ParseEnd(const char *el);
-    void ParseAnswer(const char *el, const char **attr);
-    void SetChgUserRecvCb(RecvChgUserCb_t, void * data);
-private:
-    RecvChgUserCb_t RecvChgUserCb;
-    void * chgUserCbData;
-    int depth;
-    bool error;
-};
-//-----------------------------------------------------------------------------
 class PARSER_SEND_MESSAGE: public PARSER
 {
 public: