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.
21 lines
438 B
C++
21 lines
438 B
C++
#ifndef ADDRESSBOOKSERVICE_H
|
|
#define ADDRESSBOOKSERVICE_H
|
|
|
|
#include <QList>
|
|
#include <QSharedPointer>
|
|
#include <service.h>
|
|
|
|
#include "data/addressbookdata.h"
|
|
#include "addressbook_global.h"
|
|
|
|
class ADDRESSBOOKSHARED_EXPORT AddressBookService : public Service<AddressbookData>
|
|
{
|
|
public:
|
|
AddressBookService();
|
|
~AddressBookService();
|
|
|
|
AddressbookDataPtr copyAddress(AddressbookDataPtr address);
|
|
};
|
|
|
|
#endif // ADDRESSBOOKSERVICE_H
|