File indexing completed on 2024-05-26 05:27:05

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 CompareImportFile
0012 {
0013 public:
0014     CompareImportFile();
0015     ~CompareImportFile();
0016 
0017     void compareFile();
0018 
0019     [[nodiscard]] QString archiveFilePath() const;
0020     void setArchiveFilePath(const QString &archiveFilePath);
0021 
0022     [[nodiscard]] QString listFilePath() const;
0023     void setListFilePath(const QString &listFilePath);
0024 
0025     [[nodiscard]] QString installPath() const;
0026     void setInstallPath(const QString &installPath);
0027 
0028     [[nodiscard]] QString excludePath() const;
0029     void setExcludePath(const QString &excludePath);
0030 
0031 private:
0032     QString mArchiveFilePath;
0033     QString mListFilePath;
0034     QString mInstallPath;
0035     QString mExcludePath;
0036 };