Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
qsessionmanager_p.h
Go to the documentation of this file.
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// Qt-Security score:significant reason:default
5
6#ifndef QSESSIONMANAGER_P_H
7#define QSESSIONMANAGER_P_H
8
9//
10// W A R N I N G
11// -------------
12//
13// This file is not part of the Qt API. It exists purely as an
14// implementation detail. This header file may change from version to
15// version without notice, or even be removed.
16//
17// We mean it.
18//
19
20#include <QtGui/private/qtguiglobal_p.h>
21#include <private/qobject_p.h>
22#include <QtCore/qstring.h>
23#include <QtCore/qstringlist.h>
24
25#ifndef QT_NO_SESSIONMANAGER
26
27QT_BEGIN_NAMESPACE
28
29class QPlatformSessionManager;
30
31class Q_GUI_EXPORT QSessionManagerPrivate : public QObjectPrivate
32{
33public:
34 QSessionManagerPrivate(const QString &id,
35 const QString &key);
36
37 ~QSessionManagerPrivate();
38
39 QPlatformSessionManager *platformSessionManager;
40};
41
42QT_END_NAMESPACE
43
44#endif // QT_NO_SESSIONMANAGER
45
46#endif // QSESSIONMANAGER_P_H