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.
19 lines
330 B
C++
19 lines
330 B
C++
#include <service.h>
|
|
#include "addressbookservice.h"
|
|
#include "addressbook-odb.hxx"
|
|
|
|
AddressBookService::AddressBookService()
|
|
{
|
|
}
|
|
|
|
AddressBookService::~AddressBookService()
|
|
{
|
|
}
|
|
|
|
QList<QSharedPointer<AddressbookData> > AddressBookService::all(const QString &where)
|
|
{
|
|
Service<AddressbookData> srv;
|
|
return srv.all(where);
|
|
}
|
|
|