UTPassMirror/plugins/Gpg/plugin.cpp

10 lines
243 B
C++
Raw Normal View History

2019-03-18 07:10:58 +00:00
#include <QtQml>
#include "plugin.h"
#include "gpg.h"
void FileSystemPlugin::registerTypes(const char *uri) {
2019-03-20 23:04:05 +00:00
//@uri Pass
qmlRegisterSingletonType<Gpg>(uri, 1, 0, "Gpg", [](QQmlEngine *, QJSEngine *) -> QObject * { return new Gpg; });
2019-03-18 07:10:58 +00:00
}