- Core library header files added to core.h file.
- Fixed windows build. - Added AccommodationService class.print
parent
53d56f2e13
commit
096605a39e
@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"id" : "ACCOMMODATION",
|
||||||
|
"name" : {
|
||||||
|
"default" : "Accommodation",
|
||||||
|
"CZ" : "Ubytování"
|
||||||
|
},
|
||||||
|
"descriptoin" : {
|
||||||
|
"default" : "",
|
||||||
|
"CZ" : ""
|
||||||
|
},
|
||||||
|
"dependencies" : []
|
||||||
|
}
|
@ -0,0 +1,17 @@
|
|||||||
|
#include "accommodationservice.h"
|
||||||
|
|
||||||
|
AccommodationService::AccommodationService()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
AccommodationService::~AccommodationService()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
void AccommodationService::pokus()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,18 @@
|
|||||||
|
#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
|
@ -1,6 +0,0 @@
|
|||||||
#include "core.h"
|
|
||||||
|
|
||||||
|
|
||||||
Core::Core()
|
|
||||||
{
|
|
||||||
}
|
|
@ -1,13 +1,7 @@
|
|||||||
#ifndef CORE_H
|
#ifndef CORE_H
|
||||||
#define CORE_H
|
#define CORE_H
|
||||||
|
|
||||||
#include "core_global.h"
|
#include "context.h"
|
||||||
|
#include "iplugin.h"
|
||||||
class CORESHARED_EXPORT Core
|
|
||||||
{
|
|
||||||
|
|
||||||
public:
|
|
||||||
Core();
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif // CORE_H
|
#endif // CORE_H
|
||||||
|
Loading…
Reference in New Issue