FluentUI/src/FluentUI.h

16 lines
298 B
C
Raw Normal View History

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-04-22 19:25:10 +08:00
class Q_DECL_EXPORT 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-04-22 19:25:10 +08:00
static void initialize(QQmlEngine *engine);
2023-02-24 18:44:29 +08:00
};
#endif // FLUENTUI_H