File indexing completed on 2024-11-24 04:45:11

0001 /*
0002     SPDX-FileCopyrightText: 2021 Volker Krause <vkrause@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 namespace KItinerary {
0010 namespace IataBcbpConstants {
0011 enum {
0012     UniqueMandatorySize = 23,
0013     RepeatedMandatorySize = 37,
0014     RepeatedMandatoryMinimalViableSize = 24, // pre-checkin data, technically incomplete, but we can make use of this nevertheless
0015     MinimumViableSize = UniqueMandatorySize + RepeatedMandatoryMinimalViableSize,
0016     MinimumUniqueConditionalSize = 4,
0017     MinimumSecuritySectionSize = 4,
0018 };
0019 }
0020 }
0021