File indexing completed on 2024-06-16 05:00:31

0001 /*
0002    SPDX-FileCopyrightText: 2020-2024 Laurent Montel <montel@kde.org>
0003 
0004    SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include <QString>
0010 
0011 class CompareLoggingFile
0012 {
0013 public:
0014     CompareLoggingFile();
0015     ~CompareLoggingFile() = default;
0016 
0017     void compare();
0018 
0019     [[nodiscard]] QString loggingFilePath() const;
0020     void setLoggingFilePath(const QString &loggingFilePath);
0021 
0022     [[nodiscard]] QString listFilePath() const;
0023     void setListFilePath(const QString &listFilePath);
0024 
0025 private:
0026     QString mLoggingFilePath;
0027     QString mListFilePath;
0028 };