mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2025-02-03 03:37:46 +08:00
16 lines
298 B
C++
16 lines
298 B
C++
#ifndef FLUENTUI_H
|
|
#define FLUENTUI_H
|
|
|
|
#include <QQmlEngine>
|
|
|
|
class Q_DECL_EXPORT FluentUI
|
|
{
|
|
|
|
public:
|
|
static void registerTypes(const char *uri) ;
|
|
static void initializeEngine(QQmlEngine *engine, const char *uri);
|
|
static void initialize(QQmlEngine *engine);
|
|
};
|
|
|
|
#endif // FLUENTUI_H
|