@@ -69,7 +69,7 @@ -(void) updateUser:(NSString*)user count:(NSInteger) num joinOrLeft:(BOOL) isJoi
69
69
70
70
using namespace sio ;
71
71
72
- void OnNewMessage (CFTypeRef ctrl,string const & name,sio::message::ptr const & data,bool needACK,sio::message::ptr ackResp)
72
+ void OnNewMessage (CFTypeRef ctrl,string const & name,sio::message::ptr const & data,bool needACK,sio::message::list ackResp)
73
73
{
74
74
if (data->get_flag () == message::flag_object)
75
75
{
@@ -82,7 +82,7 @@ void OnNewMessage(CFTypeRef ctrl,string const& name,sio::message::ptr const& dat
82
82
83
83
}
84
84
85
- void OnTyping (CFTypeRef ctrl,string const & name,sio::message::ptr const & data,bool needACK,sio::message::ptr ackResp)
85
+ void OnTyping (CFTypeRef ctrl,string const & name,sio::message::ptr const & data,bool needACK,sio::message::list ackResp)
86
86
{
87
87
if (data->get_flag () == message::flag_object)
88
88
{
@@ -93,7 +93,7 @@ void OnTyping(CFTypeRef ctrl,string const& name,sio::message::ptr const& data,bo
93
93
}
94
94
}
95
95
96
- void OnStopTyping (CFTypeRef ctrl,string const & name,sio::message::ptr const & data,bool needACK,sio::message::ptr ackResp)
96
+ void OnStopTyping (CFTypeRef ctrl,string const & name,sio::message::ptr const & data,bool needACK,sio::message::list ackResp)
97
97
{
98
98
if (data->get_flag () == message::flag_object)
99
99
{
@@ -104,7 +104,7 @@ void OnStopTyping(CFTypeRef ctrl,string const& name,sio::message::ptr const& dat
104
104
}
105
105
}
106
106
107
- void OnUserJoined (CFTypeRef ctrl, string const & name, sio::message::ptr const & data, bool needACK, sio::message::ptr ackResp)
107
+ void OnUserJoined (CFTypeRef ctrl, string const & name, sio::message::ptr const & data, bool needACK, sio::message::list ackResp)
108
108
{
109
109
if (data->get_flag () == message::flag_object)
110
110
{
@@ -116,7 +116,7 @@ void OnUserJoined(CFTypeRef ctrl, string const& name, sio::message::ptr const& d
116
116
}
117
117
}
118
118
119
- void OnUserLeft (CFTypeRef ctrl, string const & name, sio::message::ptr const & data, bool needACK, sio::message::ptr ackResp)
119
+ void OnUserLeft (CFTypeRef ctrl, string const & name, sio::message::ptr const & data, bool needACK, sio::message::list ackResp)
120
120
{
121
121
if (data->get_flag () == message::flag_object)
122
122
{
@@ -129,7 +129,7 @@ void OnUserLeft(CFTypeRef ctrl, string const& name, sio::message::ptr const& dat
129
129
}
130
130
131
131
132
- void OnLogin (CFTypeRef ctrl, string const & name, sio::message::ptr const & data, bool needACK, sio::message::ptr ackResp)
132
+ void OnLogin (CFTypeRef ctrl, string const & name, sio::message::ptr const & data, bool needACK, sio::message::list ackResp)
133
133
{
134
134
if (data->get_flag () == message::flag_object)
135
135
{
0 commit comments