Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-09-14 09:20:54

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 // Qt-Security score:significant reason:default
0004 
0005 #ifndef QSTYLEFACTORY_H
0006 #define QSTYLEFACTORY_H
0007 
0008 #include <QtWidgets/qtwidgetsglobal.h>
0009 #include <QtCore/qstringlist.h>
0010 
0011 QT_BEGIN_NAMESPACE
0012 
0013 
0014 class QStyle;
0015 
0016 class Q_WIDGETS_EXPORT QStyleFactory
0017 {
0018 public:
0019     static QStringList keys();
0020     static QStyle *create(const QString&);
0021 };
0022 
0023 QT_END_NAMESPACE
0024 
0025 #endif // QSTYLEFACTORY_H