You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
395 B
C
20 lines
395 B
C
9 years ago
|
#ifndef ADDRESSBOOKSERVICE_H
|
||
|
#define ADDRESSBOOKSERVICE_H
|
||
|
|
||
|
#include <QList>
|
||
|
#include <QSharedPointer>
|
||
|
|
||
|
#include "data/addressbookdata.h"
|
||
|
#include "addressbook_global.h"
|
||
|
|
||
|
class ADDRESSBOOKSHARED_EXPORT AddressBookService
|
||
|
{
|
||
|
public:
|
||
|
AddressBookService();
|
||
|
~AddressBookService();
|
||
|
|
||
|
QList<QSharedPointer<AddressbookData> > all(const QString &where = "");
|
||
|
};
|
||
|
|
||
|
#endif // ADDRESSBOOKSERVICE_H
|