1 | // Copyright (C) 2013 Samuel Gaist <samuel.gaist@edeltech.ch> |
2 | // Copyright (C) 2016 The Qt Company Ltd. |
3 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only |
4 | |
5 | #ifndef QSESSIONMANAGER_P_H |
6 | #define QSESSIONMANAGER_P_H |
7 | |
8 | // |
9 | // W A R N I N G |
10 | // ------------- |
11 | // |
12 | // This file is not part of the Qt API. It exists purely as an |
13 | // implementation detail. This header file may change from version to |
14 | // version without notice, or even be removed. |
15 | // |
16 | // We mean it. |
17 | // |
18 | |
19 | #include <QtGui/private/qtguiglobal_p.h> |
20 | #include <private/qobject_p.h> |
21 | #include <QtCore/qstring.h> |
22 | #include <QtCore/qstringlist.h> |
23 | |
24 | #ifndef QT_NO_SESSIONMANAGER |
25 | |
26 | QT_BEGIN_NAMESPACE |
27 | |
28 | class QPlatformSessionManager; |
29 | |
30 | class Q_GUI_EXPORT QSessionManagerPrivate : public QObjectPrivate |
31 | { |
32 | public: |
33 | QSessionManagerPrivate(const QString &id, |
34 | const QString &key); |
35 | |
36 | ~QSessionManagerPrivate(); |
37 | |
38 | QPlatformSessionManager *platformSessionManager; |
39 | }; |
40 | |
41 | QT_END_NAMESPACE |
42 | |
43 | #endif // QT_NO_SESSIONMANAGER |
44 | |
45 | #endif // QSESSIONMANAGER_P_H |
46 | |