mirror of
https://github.com/QRouland/UTPass.git
synced 2024-11-14 19:42:39 +00:00
10 lines
243 B
C++
10 lines
243 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; });
|
|
}
|