File indexing completed on 2024-12-29 04:50:10
0001 /* 0002 SPDX-FileCopyrightText: 2017-2019 Volker Krause <vkrause@kde.org> 0003 0004 SPDX-License-Identifier: LGPL-2.0-or-later 0005 */ 0006 0007 #pragma once 0008 0009 #include "alphaid.h" 0010 0011 #include <cstdint> 0012 0013 namespace KItinerary { 0014 namespace KnowledgeDb { 0015 0016 /** IATA airport code. */ 0017 using IataCode = AlphaId<uint16_t, 3>; 0018 0019 }} 0020