1 | /* |
2 | This file is part of the KDE libraries |
3 | |
4 | SPDX-FileCopyrightText: 1999 Lars Knoll <knoll@kde.org> |
5 | SPDX-FileCopyrightText: 2001, 2003, 2004, 2005, 2006 Nicolas GOUTTE <goutte@kde.org> |
6 | SPDX-FileCopyrightText: 2007 Nick Shaforostoff <shafff@ukr.net> |
7 | |
8 | SPDX-License-Identifier: LGPL-2.0-or-later |
9 | */ |
10 | |
11 | #ifndef KCHARSETS_P_H |
12 | #define KCHARSETS_P_H |
13 | |
14 | #include <QStringList> |
15 | |
16 | class KCharsetsPrivate |
17 | { |
18 | public: |
19 | // Cache list so QStrings can be implicitly shared |
20 | QList<QStringList> encodingsByScript; |
21 | }; |
22 | |
23 | #endif |
24 | |