File indexing completed on 2024-12-22 04:34:59
0001 /* 0002 This file is part of the KDE libraries 0003 0004 SPDX-FileCopyrightText: 2008 Oswald Buddenhagen <ossi@kde.org> 0005 0006 SPDX-License-Identifier: LGPL-2.0-or-later 0007 */ 0008 0009 #ifndef KSHELL_P_H 0010 #define KSHELL_P_H 0011 0012 class QString; 0013 0014 namespace KShell { 0015 0016 QString homeDir(const QString &user); 0017 QString quoteArgInternal(const QString &arg, bool _inquote); 0018 0019 } 0020 0021 #define PERCENT_VARIABLE QLatin1String("PERCENT_SIGN") 0022 #define PERCENT_ESCAPE QLatin1String("%PERCENT_SIGN%") 0023 0024 #endif /* KSHELL_P_H */