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.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/protocols/Skype/src/skypekit/conversation.h b/protocols/Skype/src/skypekit/conversation.h
new file mode 100644
index 0000000000..9fdc064962
--- /dev/null
+++ b/protocols/Skype/src/skypekit/conversation.h
@@ -0,0 +1,15 @@
+#pragma once
+
+#include "common.h"
+
+class CConversation : public Conversation
+{
+public:
+ typedef DRef<CConversation, Conversation> Ref;
+ typedef DRefs<CConversation, Conversation> Refs;
+
+ CConversation(unsigned int oid, SERootObject* root);
+
+private:
+ CSkypeProto* proto;
+}; \ No newline at end of file