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/TgLongPoll.h | |
parent | 381a1cd0d949db88abd0b28bc717a8690b93ccc0 (diff) |
Added @brief to the Doxygen comment.
Diffstat (limited to 'include/tgbot/net/TgLongPoll.h')
-rw-r--r-- | include/tgbot/net/TgLongPoll.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/tgbot/net/TgLongPoll.h b/include/tgbot/net/TgLongPoll.h index 93ace5b..e2d0b94 100644 --- a/include/tgbot/net/TgLongPoll.h +++ b/include/tgbot/net/TgLongPoll.h @@ -30,7 +30,8 @@ namespace TgBot { /** - * This class handles long polling and updates parsing. + * @brief This class handles long polling and updates parsing. + * * @ingroup net */ class TgLongPoll { @@ -40,7 +41,7 @@ public: TgLongPoll(const Bot& bot, int32_t = 100, int32_t = 60, const std::shared_ptr<std::vector<std::string>>& = nullptr); /** - * Starts long poll. After new update will come, this method will parse it and send to EventHandler which invokes your listeners. Designed to be executed in a loop. + * @brief Starts long poll. After new update will come, this method will parse it and send to EventHandler which invokes your listeners. Designed to be executed in a loop. */ void start(); |