1
0
mirror of https://github.com/QRouland/UTPass.git synced 2025-07-04 03:02:28 +00:00
Files
UTPass/plugins/FileSystem/plugin.h
2019-03-13 19:38:12 +01:00

15 lines
273 B
C++

#ifndef PASSPLUGIN_H
#define PASSPLUGIN_H
#include <QQmlExtensionPlugin>
class FileSystemPlugin : public QQmlExtensionPlugin {
Q_OBJECT
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface")
public:
void registerTypes(const char *uri);
};
#endif