From b6e00b9d70eb3e8eea2ccea97f786410aa1ef064 Mon Sep 17 00:00:00 2001 From: Matt Ranostay Date: Thu, 28 Feb 2019 00:15:48 -0800 Subject: libqtappfw: message: add replyStatus/requestData methods Bug-AGL: SPEC-2183 Change-Id: Iafe0f3624035268460c12ab4c000ae4925bd4236 Signed-off-by: Matt Ranostay --- message.h | 10 ++++++++++ 1 file changed, 10 insertions(+) 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 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; -- cgit 1.2.3-korg