mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2025-01-23 04:14:35 +08:00
20 lines
443 B
C++
20 lines
443 B
C++
#ifndef FLUENTUIPLUGIN_H
|
|
#define FLUENTUIPLUGIN_H
|
|
|
|
#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;
|
|
};
|
|
|
|
#endif // FLUENTUIPLUGIN_H
|