mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-23 19:20:59 +08:00
15 lines
236 B
C++
15 lines
236 B
C++
#ifndef FLUENTUI_H
|
|
#define FLUENTUI_H
|
|
|
|
#include <QQmlEngine>
|
|
|
|
class FluentUI
|
|
{
|
|
|
|
public:
|
|
static void registerTypes(const char *uri) ;
|
|
static void initializeEngine(QQmlEngine *engine, const char *uri);
|
|
};
|
|
|
|
#endif // FLUENTUI_H
|