mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2025-02-24 03:44:50 +08:00
19 lines
381 B
C++
19 lines
381 B
C++
#pragma once
|
|
|
|
#include <QQmlExtensionPlugin>
|
|
|
|
/**
|
|
* @brief The FluentUIPlugin class
|
|
*/
|
|
class FluentUIPlugin : public QQmlExtensionPlugin {
|
|
Q_OBJECT
|
|
|
|
Q_PLUGIN_METADATA(IID QQmlExtensionInterface_iid)
|
|
public:
|
|
FluentUIPlugin();
|
|
|
|
void registerTypes(const char *uri) Q_DECL_OVERRIDE;
|
|
|
|
void initializeEngine(QQmlEngine *engine, const char *uri) Q_DECL_OVERRIDE;
|
|
};
|