File indexing completed on 2025-06-29 04:47:07
0001 /* 0002 SPDX-FileCopyrightText: 2023 Volker Krause <vkrause@kde.org> 0003 SPDX-License-Identifier: LGPL-2.0-or-later 0004 */ 0005 0006 #ifndef KITINERARY_GENERICPRICEEXTRACTORHELPER_P_H 0007 #define KITINERARY_GENERICPRICEEXTRACTORHELPER_P_H 0008 0009 #include "barcodedecoder.h" 0010 0011 namespace KItinerary { 0012 0013 class ExtractorDocumentNode; 0014 0015 /** Generic price extractor code used by multiple document processors. */ 0016 namespace GenericPriceExtractorHelper 0017 { 0018 void postExtract(const QString &text, ExtractorDocumentNode &node); 0019 } 0020 0021 } 0022 0023 #endif // KITINERARY_GENERICPRICEEXTRACTORHELPER_P_H