mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-04-25 16:37:21 +00:00
29 lines
939 B
C++
29 lines
939 B
C++
/*
|
|
* bit7z - A C++ static library to interface with the 7-zip shared libraries.
|
|
* Copyright (c) 2014-2023 Riccardo Ostani - All Rights Reserved.
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
*/
|
|
|
|
#ifndef BITSTREAMCOMPRESSOR_HPP
|
|
#define BITSTREAMCOMPRESSOR_HPP
|
|
|
|
#include "bitcompressor.hpp"
|
|
|
|
namespace bit7z {
|
|
|
|
/**
|
|
* @brief The BitStreamCompressor alias allows compressing data from standard input streams.
|
|
* The compressed archives can be saved to the filesystem, standard streams, or memory buffers.
|
|
*
|
|
* It let decide various properties of the produced archive, such as the password
|
|
* protection and the compression level desired.
|
|
*/
|
|
using BitStreamCompressor BIT7Z_MAYBE_UNUSED = BitCompressor< std::istream& >;
|
|
|
|
} // namespace bit7z
|
|
|
|
#endif // BITSTREAMCOMPRESSOR_HPP
|