QtAutoUpdater  3.0.0
A Qt library to automatically check for updates and install them
qtautoupdatercore_plugin.h
1 #ifndef QTAUTOUPDATERCORE_PLUGIN_H
2 #define QTAUTOUPDATERCORE_PLUGIN_H
3 
4 #include <QtQml/QQmlExtensionPlugin>
5 
6 namespace QtAutoUpdater {
7 
8 class QtAutoUpdaterCoreDeclarativeModule : public QQmlExtensionPlugin
9 {
10  Q_OBJECT
11  Q_PLUGIN_METADATA(IID QQmlExtensionInterface_iid)
12 
13 public:
14  explicit QtAutoUpdaterCoreDeclarativeModule(QObject *parent = nullptr);
15  void registerTypes(const char *uri) override;
16 };
17 
18 }
19 
20 #endif // QTAUTOUPDATERCORE_PLUGIN_H
QObject::Q_OBJECT
Q_OBJECTQ_OBJECT
QQmlExtensionPlugin::registerTypes
virtual void registerTypes(const char *uri) override=0
QObject
QtAutoUpdater
The QtAutoUpdater namespace holds all classes that are related with the updater.
Definition: adminauthoriser.h:9
QQmlExtensionPlugin