File indexing completed on 2026-09-26 09:07:34
0001
0002
0003
0004
0005 #ifndef QFACTORYINTERFACE_H
0006 #define QFACTORYINTERFACE_H
0007
0008 #include <QtCore/qobject.h>
0009 #include <QtCore/qstringlist.h>
0010
0011 QT_BEGIN_NAMESPACE
0012
0013 struct Q_CORE_EXPORT QFactoryInterface
0014 {
0015 virtual ~QFactoryInterface();
0016 virtual QStringList keys() const = 0;
0017 };
0018
0019 #ifndef Q_QDOC
0020 Q_DECLARE_INTERFACE(QFactoryInterface, "org.qt-project.Qt.QFactoryInterface")
0021 #endif
0022
0023 QT_END_NAMESPACE
0024
0025 #endif