File indexing completed on 2025-07-06 04:48:14
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 class QString; 0012 0013 namespace KItinerary { 0014 0015 /** Diagnositic information about which features of the extractor are available. 0016 * This typically depends on build options. 0017 */ 0018 namespace ExtractorCapabilities 0019 { 0020 /** Textual representation, mainly useful for bug reports/support. */ 0021 KITINERARY_EXPORT QString capabilitiesString(); 0022 } 0023 0024 } 0025