diff --git a/include/transport/conversation.h b/include/transport/conversation.h index 8192d61c57787ce67fbd6e1c25ad482a8f66cae8..cec4699978b26040efc51016461c1ab7c9e55e37 100644 --- a/include/transport/conversation.h +++ b/include/transport/conversation.h @@ -41,7 +41,7 @@ class Conversation { const std::string &getLegacyName() { return m_legacyName; } - void handleMessage(boost::shared_ptr &message); + void handleMessage(boost::shared_ptr &message, const std::string &nickname = ""); void handleParticipantChanged(const std::string &nickname, int flag); void setNickname(const std::string &nickname) { m_nickname = nickname; @@ -57,6 +57,7 @@ class Conversation { ConversationManager *m_conversationManager; std::string m_legacyName; std::string m_nickname; + int m_muc; }; }