summaryrefslogtreecommitdiffstats
path: root/message.h
diff options
context:
space:
mode:
Diffstat (limited to 'message.h')
-rw-r--r--message.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/message.h b/message.h
index 0a01e17..c89f007 100644
--- a/message.h
+++ b/message.h
@@ -70,6 +70,11 @@ class Message : public QObject
return m_event_data;
}
+ inline QString replyStatus() const
+ {
+ return m_reply_status;
+ }
+
inline QString replyInfo() const
{
return m_reply_info;
@@ -99,6 +104,11 @@ class Message : public QObject
m_request["callid"] = callId;
}
+ inline QMap<QString, QVariant> requestData() const
+ {
+ return m_request;
+ }
+
protected:
bool m_event, m_init, m_reply;
QString m_event_api, m_event_name, m_reply_info, m_reply_status, m_reply_uuid;
' href='#n114'>114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174