Warning, file /pim/kitinerary/src/lib/extractorutil.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 /*
0002     SPDX-FileCopyrightText: 2019 Volker Krause <vkrause@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include "kitinerary_export.h"
0010 
0011 namespace KItinerary {
0012 
0013 class Flight;
0014 
0015 /** Data extraction utility functions. */
0016 namespace ExtractorUtil
0017 {
0018 /** Move terminal indications from airport names to the correct fields.
0019  *  @internal Only exported for unit tests.
0020  */
0021 KITINERARY_EXPORT Flight extractTerminals(Flight flight);
0022 }
0023 
0024 }
0025