File indexing completed on 2024-04-28 03:53:48

0001 /*
0002     This file is part of the KDE libraries
0003 
0004     SPDX-FileCopyrightText: 2002-2003, 2007 Oswald Buddenhagen <ossi@kde.org>
0005 
0006     SPDX-License-Identifier: LGPL-2.0-or-later
0007 */
0008 
0009 #ifndef KMACROEXPANDER_P_H
0010 #define KMACROEXPANDER_P_H
0011 
0012 #include "kmacroexpander.h"
0013 
0014 class KMacroExpanderBasePrivate
0015 {
0016 public:
0017     KMacroExpanderBasePrivate(QChar c)
0018         : escapechar(c)
0019     {
0020     }
0021     QChar escapechar;
0022 };
0023 
0024 #endif