File indexing completed on 2024-05-19 03:56:21

0001 /*
0002     This file is part of the KDE libraries
0003 
0004     SPDX-FileCopyrightText: 2007 Oswald Buddenhagen <ossi@kde.org>
0005 
0006     SPDX-License-Identifier: LGPL-2.0-or-later
0007 */
0008 
0009 #ifndef KPROCESS_P_H
0010 #define KPROCESS_P_H
0011 
0012 #include "kprocess.h"
0013 
0014 class KProcessPrivate
0015 {
0016     Q_DECLARE_PUBLIC(KProcess)
0017 protected:
0018     KProcessPrivate(KProcess *qq)
0019         : openMode(QIODevice::ReadWrite)
0020         , q_ptr(qq)
0021     {
0022     }
0023 
0024     QIODevice::OpenMode openMode;
0025 
0026     KProcess *q_ptr;
0027 };
0028 
0029 #endif