Migration of QtMvvm from github
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.
 
 
 
 
 

16 lines
373 B

#ifndef QTMVVMQUICK_PLUGIN_H
#define QTMVVMQUICK_PLUGIN_H
#include <QtQml/QQmlExtensionPlugin>
class QtMvvmQuickDeclarativeModule : public QQmlExtensionPlugin
{
Q_OBJECT
Q_PLUGIN_METADATA(IID QQmlExtensionInterface_iid)
public:
QtMvvmQuickDeclarativeModule(QObject *parent = nullptr);
void registerTypes(const char *uri) override;
};
#endif // QTMVVMQUICK_PLUGIN_H