mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-12-02 07:43:00 +08:00
17 lines
400 B
C++
17 lines
400 B
C++
#ifndef FLUENTUIPLUGIN_H
|
|
#define FLUENTUIPLUGIN_H
|
|
|
|
#include <QQmlExtensionPlugin>
|
|
|
|
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;
|
|
};
|
|
|
|
#endif // FLUENTUIPLUGIN_H
|