mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2025-02-09 00:05:39 +08:00
18 lines
376 B
C++
18 lines
376 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;
|
|
}; |