Skip to content

Commit

Permalink
Improve documentation comments
Browse files Browse the repository at this point in the history
  • Loading branch information
rikyoz committed Aug 16, 2024
1 parent 1808276 commit 2441b8a
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions include/bit7z/bitoutputarchive.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,11 @@ class BitOutputArchive {
void addDirectory( const tstring& inDir );

/**
* @brief Adds the contents of the given directory path that match the given wildcard filter.
* @brief Adds the contents of the given directory path.
*
* This function iterates through the specified directory and adds its contents
* based on the provided wildcard filter. Optionally, the operation can be
* recursive, meaning it will include subdirectories and their contents.
*
* @param inDir the directory where to search for files to be added to the output archive.
* @param filter the wildcard filter to be used for searching the files.
Expand All @@ -202,7 +206,11 @@ class BitOutputArchive {
void addDirectoryContents( const tstring& inDir, const tstring& filter, bool recursive );

/**
* @brief Adds the contents of the given directory path that match the given wildcard filter.
* @brief Adds the contents of the given directory path.
*
* This function iterates through the specified directory and adds its contents
* based on the provided wildcard filter and policy. Optionally, the operation can be
* recursive, meaning it will include subdirectories and their contents.
*
* @param inDir the directory where to search for files to be added to the output archive.
* @param filter (optional) the wildcard filter to be used for searching the files.
Expand Down

0 comments on commit 2441b8a

Please sign in to comment.