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

0001 /*
0002     SPDX-FileCopyrightText: 2020 Volker Krause <vkrause@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #ifndef KPUBLICTRANSPORT_LOADUTIL_H
0008 #define KPUBLICTRANSPORT_LOADUTIL_H
0009 
0010 #include "load.h"
0011 
0012 #include <vector>
0013 
0014 namespace KPublicTransport {
0015 
0016 /** Internal utility functions for dealing with LoadInfo objects. */
0017 namespace LoadUtil
0018 {
0019     std::vector<LoadInfo> merge(const std::vector<LoadInfo> &lhs, const std::vector<LoadInfo> &rhs);
0020 }
0021 
0022 }
0023 
0024 #endif // KPUBLICTRANSPORT_LOADUTIL_H