File indexing completed on 2024-04-21 03:53:01

0001 /*
0002     This file is part of the KDE libraries
0003 
0004     SPDX-FileCopyrightText: 1999 Lars Knoll <knoll@kde.org>
0005     SPDX-FileCopyrightText: 2001, 2003, 2004, 2005, 2006 Nicolas GOUTTE <goutte@kde.org>
0006     SPDX-FileCopyrightText: 2007 Nick Shaforostoff <shafff@ukr.net>
0007 
0008     SPDX-License-Identifier: LGPL-2.0-or-later
0009 */
0010 
0011 #ifndef KCHARSETS_P_H
0012 #define KCHARSETS_P_H
0013 
0014 #include <QStringList>
0015 
0016 class KCharsetsPrivate
0017 {
0018 public:
0019     // Cache list so QStrings can be implicitly shared
0020     QList<QStringList> encodingsByScript;
0021 };
0022 
0023 #endif