2023-02-24 18:44:29 +08:00
|
|
|
|
#ifndef FLUENTUI_H
|
|
|
|
|
#define FLUENTUI_H
|
|
|
|
|
|
2023-02-26 23:47:07 +08:00
|
|
|
|
#include <QQmlEngine>
|
2023-02-24 18:44:29 +08:00
|
|
|
|
|
2023-02-26 23:47:07 +08:00
|
|
|
|
class FluentUI
|
2023-02-24 18:44:29 +08:00
|
|
|
|
{
|
|
|
|
|
|
2023-02-26 23:47:07 +08:00
|
|
|
|
public:
|
2023-03-03 18:19:48 +08:00
|
|
|
|
static void registerTypes(const char *uri) ;
|
|
|
|
|
static void initializeEngine(QQmlEngine *engine, const char *uri);
|
2023-02-24 18:44:29 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // FLUENTUI_H
|