1
0
mirror of https://github.com/QRouland/UTPass.git synced 2025-01-24 23:56:39 +00:00
UTPass/plugins/Pass/plugin.cpp

11 lines
245 B
C++

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