| 1 | /* |
| 2 | This file is part of the KDE libraries |
| 3 | |
| 4 | SPDX-FileCopyrightText: 2008 Oswald Buddenhagen <ossi@kde.org> |
| 5 | |
| 6 | SPDX-License-Identifier: LGPL-2.0-or-later |
| 7 | */ |
| 8 | |
| 9 | #ifndef KSHELL_P_H |
| 10 | #define KSHELL_P_H |
| 11 | |
| 12 | class QString; |
| 13 | |
| 14 | namespace KShell |
| 15 | { |
| 16 | QString homeDir(const QString &user); |
| 17 | QString quoteArgInternal(const QString &arg, bool _inquote); |
| 18 | |
| 19 | } |
| 20 | |
| 21 | #define PERCENT_VARIABLE QLatin1String("PERCENT_SIGN") |
| 22 | #define PERCENT_ESCAPE QLatin1String("%PERCENT_SIGN%") |
| 23 | |
| 24 | #endif /* KSHELL_P_H */ |
| 25 | |