1 | /* |
---|---|
2 | This file is part of the KDE libraries |
3 | |
4 | SPDX-FileCopyrightText: 2002-2003, 2007 Oswald Buddenhagen <ossi@kde.org> |
5 | |
6 | SPDX-License-Identifier: LGPL-2.0-or-later |
7 | */ |
8 | |
9 | #ifndef KMACROEXPANDER_P_H |
10 | #define KMACROEXPANDER_P_H |
11 | |
12 | #include "kmacroexpander.h" |
13 | |
14 | class KMacroExpanderBasePrivate |
15 | { |
16 | public: |
17 | KMacroExpanderBasePrivate(QChar c) |
18 | : escapechar(c) |
19 | { |
20 | } |
21 | QChar escapechar; |
22 | }; |
23 | |
24 | #endif |
25 |