diff options
Diffstat (limited to 'src/other_tools/utils/archive_ops.hpp')
-rw-r--r-- | src/other_tools/utils/archive_ops.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/other_tools/utils/archive_ops.hpp b/src/other_tools/utils/archive_ops.hpp index 91595867..94013f30 100644 --- a/src/other_tools/utils/archive_ops.hpp +++ b/src/other_tools/utils/archive_ops.hpp @@ -27,13 +27,14 @@ using archive_entry = struct archive_entry; enum class ArchiveType : size_t { Zip, + _7Zip, Tar, // uncompressed TarGz, TarBz2, TarXz, TarLz, TarLzma, - TarAuto, // autodetect tarball-type archives + TarAuto // autodetect tarball-type archives }; /// \brief Class handling archiving and unarchiving operations via libarchive |