1 | // Copyright (C) 2016 The Qt Company Ltd. |
---|---|
2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only |
3 | |
4 | #ifndef QXCBGLINTEGRATIONFACTORY_H |
5 | #define QXCBGLINTEGRATIONFACTORY_H |
6 | |
7 | #include <QtCore/qstringlist.h> |
8 | |
9 | QT_BEGIN_NAMESPACE |
10 | |
11 | class QXcbGlIntegration; |
12 | |
13 | class QXcbGlIntegrationFactory |
14 | { |
15 | public: |
16 | static QXcbGlIntegration *create(const QString &name); |
17 | }; |
18 | |
19 | QT_END_NAMESPACE |
20 | |
21 | #endif //QXCBGLINTEGRATIONFACTORY_H |
22 | |
23 |