mirror of
https://github.com/QRouland/UTPass.git
synced 2025-01-24 15:46:40 +00:00
11 lines
280 B
C++
11 lines
280 B
C++
#include <QtQml>
|
|
|
|
#include "plugin.h"
|
|
#include "utils.h"
|
|
|
|
void TestsUtilsPlugin::registerTypes(const char *uri)
|
|
{
|
|
//@uri TestUtils
|
|
qmlRegisterSingletonType<TestsUtilsPlugin>(uri, 1, 0, "TestUtils", [](QQmlEngine *, QJSEngine *) -> QObject * { return new TestsUtils; });
|
|
}
|