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.
30 lines
437 B
C++
30 lines
437 B
C++
9 years ago
|
#include <context.h>
|
||
|
|
||
|
#include "accommodation.h"
|
||
|
#include <QDebug>
|
||
|
#include "accommodationform.h"
|
||
|
|
||
|
#include "data/person.h"
|
||
|
|
||
|
Accommodation::Accommodation()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
QString Accommodation::pluginName()
|
||
|
{
|
||
|
return "Ubytovani";
|
||
|
}
|
||
|
|
||
|
void Accommodation::init()
|
||
|
{
|
||
|
qDebug() << "init accomodation";
|
||
|
m_ui = new AccommodationForm();
|
||
|
m_service = new Service<Person>();
|
||
|
}
|
||
|
|
||
|
QString Accommodation::pluginId()
|
||
|
{
|
||
|
return "ACCOMMODATION";
|
||
|
}
|
||
|
|