-
-
Notifications
You must be signed in to change notification settings - Fork 119
BitInFormat
Oz edited this page Sep 25, 2024
·
12 revisions
The BitInFormat class specifies an extractable archive format.
Note
Usually, the user of the library should not create new formats and, instead, use the ones provided by the BitFormat namespace.
#include <bit7z/bitformat.hpp>
Return type | Name |
---|---|
constexpr | BitInFormat( unsigned char value ) noexcept |
bool | operator!=( BitInFormat const& other ) const noexcept |
bool | operator==( BitInFormat const& other ) const noexcept |
unsigned char | value() const noexcept |
Constructs a BitInFormat object with the ID value used by the 7z SDK.
Parameters:
- value: the value of the format in the 7z SDK.
bool operator!=( BitInFormat const& other ) const noexcept
Parameters:
- other: the target object to compare to.
Returns a boolean value indicating whether this format is different from the "other" or not.
bool operator==( BitInFormat const& other ) const noexcept
Parameters:
- other: the target object to compare to.
Returns a boolean value indicating whether this format is equal to the "other" or not.
Returns the value of the format in the 7z SDK.
Documentation for bit7z v4.0.9
Copyright © 2014 - 2024 Riccardo Ostani (@rikyoz)
Copyright © 2014 - 2024 Riccardo Ostani (@rikyoz)
- Bit7zLibrary
- BitArchiveEditor
- BitArchiveReader
- BitArchiveWriter
- BitException
- BitFileCompressor
- BitFileExtractor
- BitMemCompressor
- BitMemExtractor
- BitStreamCompressor
- BitStreamExtractor
- BitInFormat