Easemob Windows SDK
emlogcallbackinterface.h
1 //
2 // emlogcallbackinterface.h
3 // easemob
4 //
5 // Created by youni on 15/12/3.
6 //
7 //
8 
9 #ifndef emlogcallbackinterface_h
10 #define emlogcallbackinterface_h
11 
12 #include <string>
13 
14 namespace easemob{
15 
16 // add a simple log callback interface for platform sdk
18 public:
19  virtual ~EMLogCallbackInterface(){}
20  virtual void onLogCallback(const std::string &aLogString) = 0;
21 };
22 
23 }
24 
25 #endif /* emlogcallbackinterface_h */
Definition: emlogcallbackinterface.h:17
Definition: emattributevalue.h:28