File indexing completed on 2024-11-24 04:44:40
0001 /* 0002 SPDX-FileCopyrightText: 2022 Volker Krause <vkrause@kde.org> 0003 SPDX-License-Identifier: LGPL-2.0-or-later 0004 */ 0005 0006 #ifndef ICAOVDSPARSER_H 0007 #define ICAOVDSPARSER_H 0008 0009 class QByteArray; 0010 class QVariant; 0011 0012 /** Parser foe ICAO VDS-NC certificats. */ 0013 class IcaoVdsParser 0014 { 0015 public: 0016 static void init(); 0017 static QVariant parse(const QByteArray &data); 0018 }; 0019 0020 #endif // ICAOVDSPARSER_H