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