File tree 1 file changed +1
-6
lines changed
1 file changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -36,19 +36,16 @@ namespace sio
36
36
}
37
37
};
38
38
39
- inline
40
39
const std::string& event::get_nsp () const
41
40
{
42
41
return m_nsp;
43
42
}
44
43
45
- inline
46
44
const std::string& event::get_name () const
47
45
{
48
46
return m_name;
49
47
}
50
48
51
- inline
52
49
const message::ptr& event::get_message () const
53
50
{
54
51
if (m_messages.size ()>0 )
@@ -60,19 +57,16 @@ namespace sio
60
57
}
61
58
}
62
59
63
- inline
64
60
const message::list& event::get_messages () const
65
61
{
66
62
return m_messages;
67
63
}
68
64
69
- inline
70
65
bool event::need_ack () const
71
66
{
72
67
return m_need_ack;
73
68
}
74
69
75
- inline
76
70
void event::put_ack_message (message::ptr const & ack_message)
77
71
{
78
72
if (m_need_ack)
@@ -102,6 +96,7 @@ namespace sio
102
96
return m_ack_message;
103
97
}
104
98
99
+ inline
105
100
message::ptr& event::get_ack_message_impl ()
106
101
{
107
102
return m_ack_message;
You can’t perform that action at this time.
0 commit comments