QtRestClient  3.0.0
A library for generic JSON-based REST-APIs, with a mechanism to map JSON to Qt objects
qtrestclient_plugin.h
1 #ifndef QTRESTCLIENT_PLUGIN_H
2 #define QTRESTCLIENT_PLUGIN_H
3 
4 #include <QtQml/QQmlExtensionPlugin>
5 
6 class QtRestClientDeclarativeModule : public QQmlExtensionPlugin
7 {
9  Q_PLUGIN_METADATA(IID QQmlExtensionInterface_iid)
10 
11 public:
12  QtRestClientDeclarativeModule(QObject *parent = nullptr);
13  void registerTypes(const char *uri) override;
14 };
15 
16 #endif // QTRESTCLIENT_PLUGIN_H
QObject::Q_OBJECT
Q_OBJECTQ_OBJECT
QQmlExtensionPlugin::registerTypes
virtual void registerTypes(const char *uri) override=0
QQmlExtensionPlugin
QObject