File indexing completed on 2024-05-12 04:42:44

0001 /*
0002     SPDX-FileCopyrightText: 2018 Volker Krause <vkrause@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #ifndef KPUBLICTRANSPORT_LINEUTIL_P_H
0008 #define KPUBLICTRANSPORT_LINEUTIL_P_H
0009 
0010 #include <KPublicTransport/Line>
0011 
0012 class QString;
0013 
0014 namespace KPublicTransport {
0015 
0016 
0017 namespace LineUtil
0018 {
0019     bool isSameLineNameStrict(const QString &lhs, const QString &rhs);
0020     bool isSameLineNameFuzzy(const QString &lhs, const QString &rhs);
0021     bool isCompatibleMode(Line::Mode lhs, Line::Mode rhs);
0022 }
0023 
0024 }
0025 
0026 #endif // KPUBLICTRANSPORT_LINEUTIL_H