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

17 lines
301 B
C
Raw Normal View History

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