Back to home page

EIC code displayed by LXR

 
 

    


Warning, file /include/QtCore/qfactoryinterface.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 QFACTORYINTERFACE_H
0005 #define QFACTORYINTERFACE_H
0006 
0007 #include <QtCore/qobject.h>
0008 #include <QtCore/qstringlist.h>
0009 
0010 QT_BEGIN_NAMESPACE
0011 
0012 struct Q_CORE_EXPORT QFactoryInterface
0013 {
0014     virtual ~QFactoryInterface();
0015     virtual QStringList keys() const = 0;
0016 };
0017 
0018 #ifndef Q_QDOC
0019 Q_DECLARE_INTERFACE(QFactoryInterface, "org.qt-project.Qt.QFactoryInterface")
0020 #endif
0021 
0022 QT_END_NAMESPACE
0023 
0024 #endif // QFACTORYINTERFACE_H