From: Michal Nowikowski Date: Thu, 7 Mar 2019 11:18:03 +0000 (+0100) Subject: improved Sandbox class comments X-Git-Tag: 465-add-subnet4-update-and-subnet6-update-commands-to-subnet-cmds-hook_base2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0e022846de35bf31b7e6ae4fe7d8d900f14488ea;p=thirdparty%2Fkea.git improved Sandbox class comments --- diff --git a/src/lib/testutils/sandbox.h b/src/lib/testutils/sandbox.h index 74d9735b2a..f0df176be4 100644 --- a/src/lib/testutils/sandbox.h +++ b/src/lib/testutils/sandbox.h @@ -31,6 +31,8 @@ private: std::string path_; /// @brief Method for deleting files and folders, used in nftw traversal function. + /// + /// @param fpath path to the file to be removed. static int rmFile(const char *fpath, const struct stat *, int , struct FTW *) { return(remove(fpath)); } @@ -54,7 +56,7 @@ public: /// @brief Join sandbox path with indicated file subpath. /// - /// @param file A path to file that should be joined to base path of sandbox. + /// @param file path to file that should be joined to base path of sandbox. std::string join(std::string file) { return (path_ + "/" + file); }