diff options
author | Saturn&Eric <[email protected]> | 2022-07-23 14:54:51 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2022-07-23 14:54:51 +0000 |
commit | b244320b2d228189767aa6d59febceb6b64527fb (patch) | |
tree | 179d34e2a3e84231fad72c4bbe9f74673d0b74d0 /src/core/function/ArchiveFileOperator.h | |
parent | Merge pull request #68 from saturneric/develop-2.0.8 (diff) | |
parent | feat(project): add rpm package support (diff) | |
download | GpgFrontend-b244320b2d228189767aa6d59febceb6b64527fb.tar.gz GpgFrontend-b244320b2d228189767aa6d59febceb6b64527fb.zip |
Merge pull request #70 from saturneric/dev/2.0.8/saturnericv2.0.9
Develop 2.0.9.1
Diffstat (limited to 'src/core/function/ArchiveFileOperator.h')
-rw-r--r-- | src/core/function/ArchiveFileOperator.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/core/function/ArchiveFileOperator.h b/src/core/function/ArchiveFileOperator.h index 28d1ad65..4db5af5f 100644 --- a/src/core/function/ArchiveFileOperator.h +++ b/src/core/function/ArchiveFileOperator.h @@ -46,15 +46,13 @@ class GPGFRONTEND_CORE_EXPORT ArchiveFileOperator { public: static void ListArchive(const std::filesystem::path &archive_path); - static void CreateArchive( - const std::filesystem::path &base_path, - const std::filesystem::path &archive_path, + static void CreateArchive(const std::filesystem::path &base_path, + const std::filesystem::path &archive_path, int compress, const std::vector<std::filesystem::path> &files); - static void ExtractArchive( - const std::filesystem::path &archive_path, - const std::filesystem::path &base_path); + static void ExtractArchive(const std::filesystem::path &archive_path, + const std::filesystem::path &base_path); }; } // namespace GpgFrontend |