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
426 B
C
28 lines
426 B
C
9 years ago
|
#ifndef SHOP_H
|
||
|
#define SHOP_H
|
||
|
|
||
|
#include <QObject>
|
||
|
#include <core.h>
|
||
|
#include "shop_global.h"
|
||
|
|
||
|
class SHOPSHARED_EXPORT Shop : public QObject, IMetaDataPlugin
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
Q_PLUGIN_METADATA(IID PluginInterface_iid FILE "shop.json")
|
||
|
Q_INTERFACES(IPlugin)
|
||
|
|
||
|
public:
|
||
|
Shop();
|
||
|
|
||
|
protected:
|
||
|
void initServiceUi() Q_DECL_OVERRIDE;
|
||
|
|
||
|
|
||
|
// IPlugin interface
|
||
|
public:
|
||
|
virtual QIcon pluginIcon();
|
||
|
};
|
||
|
|
||
|
#endif // SHOP_H
|