mirror of
https://github.com/QRouland/UTPass.git
synced 2025-01-24 07:36:39 +00:00
14 lines
260 B
C++
14 lines
260 B
C++
#include <QtQml>
|
|
#include <cstring>
|
|
|
|
#include "plugin.h"
|
|
#include "git.h"
|
|
|
|
|
|
void GitPlugin::registerTypes(const char *uri)
|
|
{
|
|
//@uri Git
|
|
qmlRegisterSingletonType<Git>(uri, 1, 0, "Git", [](QQmlEngine *, QJSEngine *) -> QObject * { return new Git; });
|
|
|
|
}
|