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.
26 lines
529 B
C
26 lines
529 B
C
9 years ago
|
#ifndef ACCOMMODATION_H
|
||
|
#define ACCOMMODATION_H
|
||
|
|
||
|
#include "accommodation_global.h"
|
||
|
#include <context.h>
|
||
|
#include <iplugin.h>
|
||
|
#include <QObject>
|
||
|
#include <QtPlugin>
|
||
|
|
||
|
class ACCOMMODATIONSHARED_EXPORT Accommodation : public QObject, IPlugin
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
Q_PLUGIN_METADATA(IID PluginInterface_iid FILE "accommodation.json")
|
||
|
Q_INTERFACES(IPlugin)
|
||
|
|
||
|
public:
|
||
|
Accommodation();
|
||
|
|
||
|
QString pluginName() Q_DECL_OVERRIDE;
|
||
|
void init() Q_DECL_OVERRIDE;
|
||
|
QString pluginId() Q_DECL_OVERRIDE;
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // ACCOMMODATION_H
|