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.
24 lines
419 B
C
24 lines
419 B
C
9 years ago
|
#ifndef COMMODITY_H
|
||
|
#define COMMODITY_H
|
||
|
|
||
|
#include "commodity_global.h"
|
||
|
#include <core.h>
|
||
|
#include <QObject>
|
||
|
#include <QtPlugin>
|
||
|
|
||
|
class COMMODITYSHARED_EXPORT Commodity : public QObject, IMetaDataPlugin
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
Q_PLUGIN_METADATA(IID PluginInterface_iid FILE "commodity.json")
|
||
|
Q_INTERFACES(IPlugin)
|
||
|
|
||
|
public:
|
||
|
Commodity();
|
||
|
|
||
|
protected:
|
||
|
void initServiceUi() Q_DECL_OVERRIDE;
|
||
|
};
|
||
|
|
||
|
#endif // COMMODITY_H
|