diff options
author | JellyBrick <shlee1503@naver.com> | 2018-05-29 20:22:58 +0900 |
---|---|---|
committer | JellyBrick <shlee1503@naver.com> | 2018-05-29 20:22:58 +0900 |
commit | 1107db6e8890774fc55fa43160b0afa442443056 (patch) | |
tree | cdd8284e70bba788e0048cc0a717ad4656c285a0 /include/tgbot/net/HttpReqArg.h | |
parent | 381a1cd0d949db88abd0b28bc717a8690b93ccc0 (diff) |
Added @brief to the Doxygen comment.
Diffstat (limited to 'include/tgbot/net/HttpReqArg.h')
-rw-r--r-- | include/tgbot/net/HttpReqArg.h | 13 |
1 files changed, 7 insertions, 6 deletions
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; }; |