blob: 513f532a0fe0eef031ae7322b634950c4e55595c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#include "..\skype.h"
#include "participant.h"
CParticipant::CParticipant(unsigned int oid, SERootObject* root) :
Participant(oid, root)
{
this->room = NULL;
}
void CParticipant::SetOnChangedCallback(OnChanged callback, ChatRoom *room)
{
this->room = room;
this->callback = callback;
}
void CParticipant::OnChange(int prop)
{
if (this->room != NULL)
(room->*callback)(this->ref(), prop);
}
|