mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-27 13:49:08 +08:00
15 lines
296 B
C++
15 lines
296 B
C++
#include "qml_plugin.h"
|
|
|
|
#include "Fluent.h"
|
|
|
|
void FluentUIQmlPlugin::registerTypes(const char *uri)
|
|
{
|
|
Fluent::getInstance()->registerTypes(uri);
|
|
}
|
|
|
|
void FluentUIQmlPlugin::initializeEngine(QQmlEngine *engine, const char *uri)
|
|
{
|
|
Fluent::getInstance()->initializeEngine(engine,uri);
|
|
}
|
|
|