blob: 4a79ba723d4a24c31047e9597f9d3db7a27af428 (
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(unsigned int oid, CSkypeProto*);
SEString GetSid();
SEString GetNick();
bool GetFullname(SEString &firstName, SEString &lastName);
private:
CSkypeProto* proto;
void OnChange(int prop);
};
|