FluentUI/src/FluentUI.cpp

11 lines
272 B
C++
Raw Normal View History

2023-02-24 18:44:29 +08:00
#include "FluentUI.h"
2023-02-26 23:47:07 +08:00
#include "Fluent.h"
2023-02-24 18:44:29 +08:00
2023-03-03 18:19:48 +08:00
void FluentUI::registerTypes(const char *uri){
Fluent::getInstance()->registerTypes(uri);
}
2023-03-07 23:58:32 +08:00
2023-03-03 18:19:48 +08:00
void FluentUI::initializeEngine(QQmlEngine *engine, const char *uri){
Fluent::getInstance()->initializeEngine(engine,uri);
2023-02-24 18:44:29 +08:00
}