UTPassMirror/plugins/Gpg/plugin.cpp

11 lines
240 B
C++
Raw Normal View History

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