File indexing completed on 2024-04-28 13:39:49

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 #include "parserbase.h"
0011 
0012 namespace Diff2
0013 {
0014 
0015 class DiffParser : public ParserBase
0016 {
0017 public:
0018     DiffParser(const KompareModelList* list, const QStringList& diff);
0019     ~DiffParser() override;
0020 
0021 protected:
0022     enum Kompare::Format determineFormat() override;
0023 };
0024 
0025 } // End of namespace Diff2
0026 
0027 #endif