summaryrefslogtreecommitdiff
path: root/protocols/Skype/src/skypekit/conversation.h
blob: 26e7fb990bdd42d4a09c52a4833da7c04f9e0d69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#pragma once

#include "common.h"
#include "participant.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;
	CParticipant::Refs participants;

	void OnParticipantListChange();
};