#include <string>
#include <vector>
-#include "resetable.h"
-#include "stg_const.h"
-#include "store.h"
-#include "admins.h"
-#include "admin.h"
-#include "users.h"
-#include "stg_message.h"
+#include "stg/resetable.h"
+#include "stg/stg_const.h"
+#include "stg/store.h"
+#include "stg/admins.h"
+#include "stg/admin.h"
+#include "stg/users.h"
+#include "stg/stg_message.h"
class TARIFFS;
class SETTINGS;
tariffs(NULL),
store(NULL),
settings(NULL),
- currAdmin(),
- depth(0)
+ currAdmin(NULL),
+ depth(0),
+ answerList(NULL)
{ }
virtual ~BASE_PARSER() {}
virtual int ParseStart(void *data, const char *el, const char **attr) = 0;
//-----------------------------------------------------------------------------
class PARSER_DEL_USER: public BASE_PARSER {
public:
- PARSER_DEL_USER() : BASE_PARSER(), res(0) {}
+ PARSER_DEL_USER() : BASE_PARSER(), res(0), u(NULL) {}
int ParseStart(void *data, const char *el, const char **attr);
int ParseEnd(void *data, const char *el);
void CreateAnswer();
//-----------------------------------------------------------------------------
class PARSER_SEND_MESSAGE: public BASE_PARSER {
public:
- PARSER_SEND_MESSAGE() : BASE_PARSER(), result(0) {}
+ PARSER_SEND_MESSAGE() : BASE_PARSER(), result(0), u(NULL) {}
int ParseStart(void *data, const char *el, const char **attr);
int ParseEnd(void *data, const char *el);
void CreateAnswer();