summaryrefslogtreecommitdiff
path: root/protocols/Skype/src/skypekit/conversation.h
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/Skype/src/skypekit/conversation.h')
-rw-r--r--protocols/Skype/src/skypekit/conversation.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/protocols/Skype/src/skypekit/conversation.h b/protocols/Skype/src/skypekit/conversation.h
index e8631dcac8..3441743328 100644
--- a/protocols/Skype/src/skypekit/conversation.h
+++ b/protocols/Skype/src/skypekit/conversation.h
@@ -2,13 +2,22 @@
#include "common.h"
+class ChatRoom;
+
class CConversation : public Conversation
{
public:
- typedef void (CSkypeProto::* OnConvoChanged)(const ConversationRef &conversation, int);
+ //typedef void (CSkypeProto::* OnConvoChanged)(const ConversationRef &conversation, int);
typedef DRef<CConversation, Conversation> Ref;
typedef DRefs<CConversation, Conversation> Refs;
CConversation(unsigned int oid, SERootObject* root);
+
+ void SetChatRoom(ChatRoom *room);
+
+private:
+ ChatRoom *room;
+
+ void OnChange(int prop);
}; \ No newline at end of file