-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChatManager.hpp
More file actions
39 lines (26 loc) · 841 Bytes
/
Copy pathChatManager.hpp
File metadata and controls
39 lines (26 loc) · 841 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#ifndef ChatManager_hpp
#define ChatManager_hpp
#include "cxgChatRoom.h"
#include "CXGChat.h"
#import "MessageControl.h"
class ChatManager: ChatRoom::IChatRoomObserver
{
private:
ChatManager();
~ChatManager();
static ChatManager *m_pInstance;
public:
static ChatManager *GetInstance();
virtual void OnChatRoom(ChatRoom::ChatRoomMsg crMsg, const char* strMsg);
void setController(ChatControl* listener);
void setChatRoomInfo(CHATROOM_INFO Info);
void EnterChatRoom();
void SendChatMsg(NSString *Msg, unsigned long long uid, bool bPrivate);
void ExitChatRoom();
private:
std::string m_sToken;
ChatControl* mController;
ChatRoom::ChatRoomInfo m_RoomInfo;
ChatRoom::IChatRoom* m_pChatRoom = NULL;
};
#endif /* ChatManager_hpp */