mirror of
https://github.com/QRouland/UTPass.git
synced 2025-01-10 09:28:47 +00:00
11 lines
273 B
C++
11 lines
273 B
C++
#include <QtQml>
|
|
#include <QtQml/QQmlContext>
|
|
|
|
#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; });
|
|
}
|