UTPassMirror/plugins/Gpg/plugin.h

16 lines
291 B
C
Raw Normal View History

2019-03-13 18:38:12 +00:00
#ifndef PASSPLUGIN_H
#define PASSPLUGIN_H
#include <QQmlExtensionPlugin>
class FileSystemPlugin : public QQmlExtensionPlugin {
2019-03-20 23:04:05 +00:00
Q_OBJECT
Q_PLUGIN_METADATA(IID
"org.qt-project.Qt.QQmlExtensionInterface")
2019-03-13 18:38:12 +00:00
2019-03-20 23:04:05 +00:00
public:
void registerTypes(const char *uri);
2019-03-13 18:38:12 +00:00
};
#endif