bit7z 4.0.0
A C++ library for interfacing with the 7-zip shared libs.
Loading...
Searching...
No Matches
bit7z.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 BIT7Z_HPP
11#define BIT7Z_HPP
12
13#include "bitarchivereader.hpp"
14#include "bitexception.hpp"
15#include "bitfilecompressor.hpp"
16#include "bitfileextractor.hpp"
17#include "bitmemcompressor.hpp"
18#include "bitmemextractor.hpp"
19#include "bitstreamcompressor.hpp"
20#include "bitstreamextractor.hpp"
21
22#endif // BIT7Z_HPP
23