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
399 B
C++
19 lines
399 B
C++
#ifndef CAMPSERVICE_H
|
|
#define CAMPSERVICE_H
|
|
|
|
#include <core.h>
|
|
#include <addressbookdata.h>
|
|
#include "data/camp-data.h"
|
|
#include "camp-odb.hxx"
|
|
|
|
class CampService : public Service<CampData>
|
|
{
|
|
public:
|
|
CampService();
|
|
void addPerson(CampDataPtr data, AddressbookDataPtr address);
|
|
void setOwner(CampDataPtr data, AddressItemPtr person);
|
|
CampDataPtr create();
|
|
};
|
|
|
|
#endif // CAMPSERVICE_H
|