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.
28 lines
445 B
C
28 lines
445 B
C
8 years ago
|
#ifndef CAMP_H
|
||
|
#define CAMP_H
|
||
|
|
||
|
#include "camp_global.h"
|
||
|
#include <core.h>
|
||
|
#include <QObject>
|
||
|
#include <QtPlugin>
|
||
|
|
||
|
class CAMPSHARED_EXPORT Camp : public QObject, IMetaDataPlugin
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
Q_PLUGIN_METADATA(IID PluginInterface_iid FILE "camp.json")
|
||
|
Q_INTERFACES(IPlugin)
|
||
|
|
||
|
public:
|
||
|
Camp();
|
||
|
|
||
|
protected:
|
||
|
void initServiceUi() Q_DECL_OVERRIDE;
|
||
|
|
||
|
// IPlugin interface
|
||
|
public:
|
||
|
virtual QIcon pluginIcon();
|
||
|
};
|
||
|
|
||
|
#endif // CAMP_H
|