1
0
mirror of https://github.com/QRouland/UTPass.git synced 2025-01-26 08:36:40 +00:00
UTPass/plugins/Pass/plugin.h

17 lines
298 B
C
Raw Normal View History

2019-09-20 21:29:39 +02:00
#ifndef PASSPLUGIN_H
#define PASSPLUGIN_H
#include <QQmlExtensionPlugin>
class PassPlugin : public QQmlExtensionPlugin
{
Q_OBJECT
Q_PLUGIN_METADATA(IID
"org.qt-project.Qt.QQmlExtensionInterface")
public:
void registerTypes(const char *uri) override;
};
#endif