backend adapter for vCard phones list
This commit is contained in:
parent
5bbacad84a
commit
c1c1de1b7b
6 changed files with 281 additions and 98 deletions
5
global.h
5
global.h
|
@ -238,13 +238,15 @@ public:
|
|||
QString address;
|
||||
};
|
||||
class Phone : public Contact {
|
||||
public:
|
||||
enum Type {
|
||||
fax,
|
||||
pager,
|
||||
voice,
|
||||
cell,
|
||||
video,
|
||||
modem
|
||||
modem,
|
||||
other
|
||||
};
|
||||
Phone(const QString& number, Type p_type = voice, Role p_role = none, bool p_prefered = false);
|
||||
|
||||
|
@ -252,6 +254,7 @@ public:
|
|||
Type type;
|
||||
};
|
||||
class Address : public Contact {
|
||||
public:
|
||||
Address(
|
||||
const QString& zCode = "",
|
||||
const QString& cntry = "",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue