#ifndef POSTREGISTER_H #define POSTREGISTER_H #include "postregister_global.h" #include #include class POSTREGISTERSHARED_EXPORT PostRegister : public QObject, IMetaDataPlugin { Q_OBJECT Q_PLUGIN_METADATA(IID PluginInterface_iid FILE "postregister.json") Q_INTERFACES(IPlugin) public: PostRegister() = default; // IMetaDataPlugin interface protected: void initServiceUi() override; // IPlugin interface public: bool showIcon() override; }; #endif // POSTREGISTER_H