You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
402 B
19 lines
402 B
6 years ago
|
#ifndef TESTPLUGIN_H
|
||
|
#define TESTPLUGIN_H
|
||
|
|
||
|
#include "../serviceregistry/plugintestinterface.h"
|
||
|
|
||
|
class TestPlugin : public QObject, public PluginTestInterface
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
Q_INTERFACES(PluginTestInterface)
|
||
|
Q_PLUGIN_METADATA(IID PluginTestInterfaceIId FILE "serviceregistrytestplugin.json")
|
||
|
|
||
|
public:
|
||
|
TestPlugin(QObject *parent = nullptr);
|
||
|
|
||
|
int magicNumber() const override;
|
||
|
};
|
||
|
|
||
|
#endif // TESTPLUGIN_H
|