1
0
mirror of https://github.com/QRouland/UTPass.git synced 2025-07-01 17:52:29 +00:00
Files
UTPass/plugins/Gpg/plugin.cpp

11 lines
247 B
C++

#include <QtQml>
#include "plugin.h"
#include "gpg.h"
void FileSystemPlugin::registerTypes(const char *uri)
{
//@uri Pass
qmlRegisterSingletonType<Gpg>(uri, 1, 0, "Gpg", [](QQmlEngine *, QJSEngine *) -> QObject * { return new Gpg; });
}