Back to home page

EIC code displayed by LXR

 
 

    


Warning, file /include/QtGui/qiconengineplugin.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 // Copyright (C) 2016 The Qt Company Ltd.
0002 // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
0003 
0004 #ifndef QICONENGINEPLUGIN_H
0005 #define QICONENGINEPLUGIN_H
0006 
0007 #include <QtGui/qtguiglobal.h>
0008 #include <QtCore/qplugin.h>
0009 #include <QtCore/qfactoryinterface.h>
0010 
0011 QT_BEGIN_NAMESPACE
0012 
0013 
0014 class QIconEngine;
0015 
0016 #define QIconEngineFactoryInterface_iid "org.qt-project.Qt.QIconEngineFactoryInterface"
0017 
0018 class Q_GUI_EXPORT QIconEnginePlugin : public QObject
0019 {
0020     Q_OBJECT
0021 public:
0022     QIconEnginePlugin(QObject *parent = nullptr);
0023     ~QIconEnginePlugin();
0024 
0025     virtual QIconEngine *create(const QString &filename = QString()) = 0;
0026 };
0027 
0028 QT_END_NAMESPACE
0029 
0030 #endif // QICONENGINEPLUGIN_H