blob: d15c6848153439e2a660b54ce86807711a6d68d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#pragma once
#include "common.h"
class CContact : public Contact
{
public:
typedef DRef<CContact, Contact> Ref;
typedef DRefs<CContact, Contact> Refs;
CContact(CSkypeProto*, unsigned int oid, SERootObject* root);
SEString GetSid();
SEString GetNick();
bool GetFullname(SEString &firstName, SEString &lastName);
private:
CSkypeProto* proto;
void OnChange(int prop);
};
|