File indexing completed on 2025-01-18 10:07:59
0001
0002
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