// Copyright (C) 2016 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only #ifndef QICONENGINEPLUGIN_H #define QICONENGINEPLUGIN_H #include #include #include QT_BEGIN_NAMESPACE class QIconEngine; #define QIconEngineFactoryInterface_iid "org.qt-project.Qt.QIconEngineFactoryInterface" class Q_GUI_EXPORT QIconEnginePlugin : public QObject { Q_OBJECT public: QIconEnginePlugin(QObject *parent = nullptr); ~QIconEnginePlugin(); virtual QIconEngine *create(const QString &filename = QString()) = 0; }; QT_END_NAMESPACE #endif // QICONENGINEPLUGIN_H