mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-23 11:17:15 +08:00
20 lines
353 B
C++
20 lines
353 B
C++
#include "fluentuiplugin.h"
|
|
|
|
#include "FluentUI.h"
|
|
|
|
FluentUIPlugin::FluentUIPlugin()
|
|
{
|
|
|
|
}
|
|
|
|
void FluentUIPlugin::registerTypes(const char *uri)
|
|
{
|
|
FluentUI::getInstance()->registerTypes(uri);
|
|
}
|
|
|
|
void FluentUIPlugin::initializeEngine(QQmlEngine *engine, const char *uri)
|
|
{
|
|
Q_UNUSED(uri)
|
|
FluentUI::getInstance()->initializeEngine(engine,uri);
|
|
}
|