Mania++
 All Classes Functions Variables Pages
GbxCallBack.h
1 #ifndef GBXCALLBACK_H_
2 #define GBXCALLBACK_H_
3 
4 #include "../ServerResponse/GbxServerResponse.h"
5 
6 //* GbxCallBack
11 {
12 public:
16  std::string GetMethodName();
17 
23  void SetRaw(std::string callback);
24 
25 private:
26  std::string methodName;
31  void extractParameters();
32 };
33 
34 #endif // GBXCALLBACK_H_
CallBack from server, de-XML-fies the callback.
Definition: GbxCallBack.h:10
void SetRaw(std::string callback)
Sets the raw message value.
Definition: GbxCallBack.cpp:11
Response from server, de-XML-fies the response.
Definition: GbxServerResponse.h:70
std::string methodName
Method name.
Definition: GbxCallBack.h:26
void extractParameters()
Extracts parameters from the raw data (XML).
Definition: GbxCallBack.cpp:17
std::string GetMethodName()
Definition: GbxCallBack.cpp:6