Skip to content

Commit

Permalink
Improve doc comments in BitInputArchive
Browse files Browse the repository at this point in the history
  • Loading branch information
rikyoz committed Jul 12, 2024
1 parent 4fdfc36 commit a681bd8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions include/bit7z/bitinputarchive.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -260,13 +260,17 @@ class BitInputArchive {
/**
* @brief Extracts the content of the archive to the given raw data callback.
*
* @note You can set a FileCallback to check the file being extracted.
*
* @param callback a function providing the extracted raw data to the user.
*/
void extractTo( RawDataCallback callback ) const;

/**
* @brief Extracts the raw content of the archive to the given callback.
*
* @note You can set a FileCallback to check the file being extracted.
*
* @param callback a function providing the extracted raw data to the user.
*/
void extractTo( RawDataCallback callback, const std::vector< uint32_t >& indices ) const;
Expand Down

0 comments on commit a681bd8

Please sign in to comment.