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
530 B
C++
28 lines
530 B
C++
#ifndef COUNTRYREGISTER_H
|
|
#define COUNTRYREGISTER_H
|
|
|
|
#include "countryregister_global.h"
|
|
#include <QObject>
|
|
#include <imetadataplugin.h>
|
|
|
|
class COUNTRYREGISTERSHARED_EXPORT CountryRegister : public QObject, IMetaDataPlugin
|
|
{
|
|
Q_OBJECT
|
|
|
|
Q_PLUGIN_METADATA(IID PluginInterface_iid FILE "countryregister.json")
|
|
Q_INTERFACES(IPlugin)
|
|
|
|
public:
|
|
CountryRegister();
|
|
|
|
// IMetaDataPlugin interface
|
|
protected:
|
|
void initServiceUi();
|
|
|
|
// IPlugin interface
|
|
public:
|
|
bool showIcon();
|
|
};
|
|
|
|
#endif // COUNTRYREGISTER_H
|