From 1107db6e8890774fc55fa43160b0afa442443056 Mon Sep 17 00:00:00 2001 From: JellyBrick Date: Tue, 29 May 2018 20:22:58 +0900 Subject: Added @brief to the Doxygen comment. --- include/tgbot/net/HttpReqArg.h | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'include/tgbot/net/HttpReqArg.h') diff --git a/include/tgbot/net/HttpReqArg.h b/include/tgbot/net/HttpReqArg.h index 5aa60fd..7476366 100644 --- a/include/tgbot/net/HttpReqArg.h +++ b/include/tgbot/net/HttpReqArg.h @@ -32,7 +32,8 @@ namespace TgBot { /** - * This class represents argument in POST http requests. + * @brief This class represents argument in POST http requests. + * * @ingroup net */ class HttpReqArg { @@ -45,27 +46,27 @@ public: } /** - * Name of an argument. + * @brief Name of an argument. */ std::string name; /** - * Value of an argument. + * @brief Value of an argument. */ std::string value; /** - * Should be true if an argument value hold some file contents + * @brief Should be true if an argument value hold some file contents */ bool isFile = false; /** - * Mime type of an argument value. This field makes sense only if isFile is true. + * @brief Mime type of an argument value. This field makes sense only if isFile is true. */ std::string mimeType = "text/plain"; /** - * Should be set if an argument value hold some file contents + * @brief Should be set if an argument value hold some file contents */ std::string fileName; }; -- cgit v1.2.3