blob: 3e708280ca40397d9dbb092386e8deb915f8d746 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "..\skype.h"
#include "group.h"
CContactGroup::CContactGroup(CSkypeProto* _ppro, unsigned int oid, SERootObject* root) :
ContactGroup(oid, root),
proto(_ppro)
{
}
void CContactGroup::OnChange(const ContactRef &contact)
{
proto->OnContactListChanged(contact);
}
|