1 | /* |
---|---|
2 | This file is part of the KDE project, module kdesu. |
3 | SPDX-FileCopyrightText: 1999, 2000 Geert Jansen <jansen@kde.org> |
4 | |
5 | SPDX-License-Identifier: GPL-2.0-only |
6 | */ |
7 | |
8 | #ifndef KDESUSTUBPROCESS_P_H |
9 | #define KDESUSTUBPROCESS_P_H |
10 | |
11 | #include "ptyprocess_p.h" |
12 | |
13 | namespace KDESu |
14 | { |
15 | class StubProcessPrivate : public PtyProcessPrivate |
16 | { |
17 | }; |
18 | |
19 | } |
20 | |
21 | #endif |
22 |