1 | /* |
---|---|
2 | This file is part of the KDE libraries |
3 | |
4 | SPDX-FileCopyrightText: 2007 Oswald Buddenhagen <ossi@kde.org> |
5 | |
6 | SPDX-License-Identifier: LGPL-2.0-or-later |
7 | */ |
8 | |
9 | #ifndef KPROCESS_P_H |
10 | #define KPROCESS_P_H |
11 | |
12 | #include "kprocess.h" |
13 | |
14 | class KProcessPrivate |
15 | { |
16 | Q_DECLARE_PUBLIC(KProcess) |
17 | protected: |
18 | KProcessPrivate(KProcess *qq) |
19 | : openMode(QIODevice::ReadWrite) |
20 | , q_ptr(qq) |
21 | { |
22 | } |
23 | |
24 | QIODevice::OpenMode openMode; |
25 | |
26 | KProcess *q_ptr; |
27 | }; |
28 | |
29 | #endif |
30 |