bit7z 4.0.0
A C++ library for interfacing with the 7-zip shared libs.
Loading...
Searching...
No Matches
bitcompressionlevel.hpp
1/*
2 * bit7z - A C++ static library to interface with the 7-zip shared libraries.
3 * Copyright (c) 2014-2023 Riccardo Ostani - All Rights Reserved.
4 *
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at https://mozilla.org/MPL/2.0/.
8 */
9
10#ifndef BITCOMPRESSIONLEVEL_HPP
11#define BITCOMPRESSIONLEVEL_HPP
12
13namespace bit7z {
14
20 None = 0,
21 Fastest = 1,
22 Fast = 3,
23 Normal = 5,
24 Max = 7,
25 Ultra = 9
26};
27
28} // namespace bit7z
29
30#endif // BITCOMPRESSIONLEVEL_HPP
The main namespace of the bit7z library.
Definition bit7zlibrary.hpp:30
BitCompressionLevel
The BitCompressionLevel enum represents the compression level used by 7z when creating archives.
Definition bitcompressionlevel.hpp:19
@ Max
Maximum compressing.
@ Ultra
Ultra compressing.
@ Fastest
Fastest compressing.
@ Normal
Normal compressing.
@ Fast
Fast compressing.
@ None
The creator will throw an exception (unless the OverwriteMode is not None).