File indexing completed on 2025-07-13 05:11:56

0001 /*
0002     SPDX-FileCopyrightText: 2002-2004 Otto Bruggeman <otto.bruggeman@home.nl>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #ifndef KOMPAREDIFF2_DIFFPARSER_H
0008 #define KOMPAREDIFF2_DIFFPARSER_H
0009 
0010 // lib
0011 #include "parserbase.h"
0012 
0013 namespace KompareDiff2
0014 {
0015 
0016 class DiffParser : public ParserBase
0017 {
0018 public:
0019     DiffParser(const ModelList *list, const QStringList &diff);
0020     ~DiffParser() override;
0021 
0022 protected:
0023     Format determineFormat() override;
0024 };
0025 
0026 } // End of namespace KompareDiff2
0027 
0028 #endif