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/HttpServer.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'include/tgbot/net/HttpServer.h') 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 @@ -48,7 +49,7 @@ public: } /** - * Starts receiving new connections. + * @brief Starts receiving new connections. */ void start() { auto socket(std::make_shared>(_acceptor->get_io_service())); @@ -61,7 +62,7 @@ public: } /** - * Stops receiving new connections. + * @brief Stops receiving new connections. */ void stop() { _ioService.stop(); -- cgit v1.2.3