summaryrefslogtreecommitdiff
path: root/plugins/!Deprecated/Skype/src/skypekit/group.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/!Deprecated/Skype/src/skypekit/group.h')
-rw-r--r--plugins/!Deprecated/Skype/src/skypekit/group.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/plugins/!Deprecated/Skype/src/skypekit/group.h b/plugins/!Deprecated/Skype/src/skypekit/group.h
new file mode 100644
index 0000000000..0443d203ea
--- /dev/null
+++ b/plugins/!Deprecated/Skype/src/skypekit/group.h
@@ -0,0 +1,19 @@
+#pragma once
+
+#include "common.h"
+#include "contact.h"
+
+class CContactGroup : public ContactGroup
+{
+public:
+ typedef void (CSkypeProto::* OnContactListChanged)(CContact::Ref contact);
+
+ typedef DRef<CContactGroup, ContactGroup> Ref;
+ typedef DRefs<CContactGroup, ContactGroup> Refs;
+ CContactGroup(unsigned int oid, CSkypeProto*);
+
+private:
+ CSkypeProto* proto;
+
+ void OnChange(const ContactRef &contact);
+}; \ No newline at end of file