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/HttpServer.h | |
parent | 381a1cd0d949db88abd0b28bc717a8690b93ccc0 (diff) |
Added @brief to the Doxygen comment.
Diffstat (limited to 'include/tgbot/net/HttpServer.h')
-rw-r--r-- | include/tgbot/net/HttpServer.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/tgbot/net/HttpServer.h b/include/tgbot/net/HttpServer.h index d68599f..e760e29 100644 --- a/include/tgbot/net/HttpServer.h +++ b/include/tgbot/net/HttpServer.h @@ -32,7 +32,8 @@ namespace TgBot { /** - * This class handles HTTP requests from the Internet. + * @brief This class handles HTTP requests from the Internet. + * * @ingroup net */ template<typename Protocol> @@ -48,7 +49,7 @@ public: } /** - * Starts receiving new connections. + * @brief Starts receiving new connections. */ void start() { auto socket(std::make_shared<boost::asio::basic_stream_socket<Protocol>>(_acceptor->get_io_service())); @@ -61,7 +62,7 @@ public: } /** - * Stops receiving new connections. + * @brief Stops receiving new connections. */ void stop() { _ioService.stop(); |