File indexing completed on 2024-05-12 15:55:35

0001 /*
0002   SPDX-FileCopyrightText: 2007-2010 Tuomas Suutari <thsuut@utu.fi>
0003   SPDX-FileCopyrightText: 2003-2010 Jesper K. Pedersen <blackie@kde.org>
0004 
0005    SPDX-License-Identifier: GPL-2.0-or-later
0006 */
0007 
0008 #ifndef KPABASE_STRINGSET_H
0009 #define KPABASE_STRINGSET_H
0010 
0011 #include <QSet>
0012 #include <QString>
0013 
0014 namespace Utilities
0015 {
0016 /* there is no Set<> anymore since QSet<> is now provided by Qt.
0017      * For backwards compatibility we still use a useful typedef, the StringSet
0018      */
0019 typedef QSet<QString> StringSet;
0020 }
0021 
0022 #endif /* KPABASE_STRINGSET_H */
0023 // vi:expandtab:tabstop=4 shiftwidth=4: