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

0001 /*
0002     SPDX-FileCopyrightText: 2023 Jonah BrĂ¼chert <jbb@kaidan.im>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include <QString>
0010 #include <QRegularExpression>
0011 #include <QNetworkReply>
0012 
0013 #include "journeyrequest.h"
0014 
0015 namespace KPublicTransport {
0016 
0017 namespace LocalBackendUtils {
0018 
0019 QString makeSearchableName(const QString &name);
0020 
0021 bool isInSelectedTimeframe(const QDateTime &departure, const QDateTime &arrival, const JourneyRequest &req);
0022 
0023 }
0024 
0025 }