Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:07:59

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 QGENERICPLUGINFACTORY_H
0005 #define QGENERICPLUGINFACTORY_H
0006 
0007 #include <QtGui/qtguiglobal.h>
0008 #include <QtCore/qstringlist.h>
0009 
0010 QT_BEGIN_NAMESPACE
0011 
0012 
0013 class QString;
0014 class QObject;
0015 
0016 class Q_GUI_EXPORT QGenericPluginFactory
0017 {
0018 public:
0019     static QStringList keys();
0020     static QObject *create(const QString&, const QString &);
0021 };
0022 
0023 QT_END_NAMESPACE
0024 
0025 #endif // QGENERICPLUGINFACTORY_H