Warning, file /include/QtGui/qgenericpluginfactory.h was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
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