FluentUI/src/fluentuiplugin.h

20 lines
443 B
C
Raw Normal View History

2023-08-24 15:50:37 +08:00
#ifndef FLUENTUIPLUGIN_H
#define FLUENTUIPLUGIN_H
#include <QQmlExtensionPlugin>
2024-02-27 12:23:24 +08:00
/**
* @brief The FluentUIPlugin class
*/
2023-08-24 15:50:37 +08:00
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