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
317 B
C
19 lines
317 B
C
9 years ago
|
#ifndef ACCOMMODATIONSERVICE_H
|
||
|
#define ACCOMMODATIONSERVICE_H
|
||
|
|
||
|
#include "data/person.h"
|
||
|
#include <core.h>
|
||
|
|
||
|
#include "accommodation_global.h"
|
||
|
|
||
|
class AccommodationService : public Service<Person>
|
||
|
{
|
||
|
public:
|
||
|
AccommodationService();
|
||
|
~AccommodationService();
|
||
|
|
||
|
void pokus();
|
||
|
};
|
||
|
|
||
|
#endif // ACCOMMODATIONSERVICE_H
|