doc fix
This commit is contained in:
@@ -29,13 +29,16 @@
|
||||
//! \addtogroup Geo
|
||||
//! \{
|
||||
//! \~\file pigeomodule.h
|
||||
//! \brief
|
||||
//! \~english Geographical position and Earth models module
|
||||
//! \~russian Модуль географической позиции и моделей Земли
|
||||
//! \details
|
||||
//! \~english This module provides classes for geographical position storage, coordinate transformations, and Earth models.
|
||||
//! \~russian Этот модуль предоставляет классы для хранения географической позиции, преобразования координат и моделей Земли.
|
||||
//! \~\}
|
||||
//! \~\brief
|
||||
//! \~english Geographical position and Earth models module.
|
||||
//! \~russian Модуль географической позиции и моделей Земли.
|
||||
//!
|
||||
//! \~\details
|
||||
//! \~english \section cmake_module_Cloud Building with CMake
|
||||
//! \~russian \section cmake_module_Cloud Сборка с использованием CMake
|
||||
//!
|
||||
//! \~\code
|
||||
//! find_package(PIP REQUIRED)
|
||||
//! target_link_libraries([target] PIP)
|
||||
//! \endcode
|
||||
//!
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
//! \~\file pihttpclient.h
|
||||
//! \~\ingroup HTTP
|
||||
//! \~\ingroup HTTPClient
|
||||
//! \~\brief
|
||||
//! \~english Public HTTP client request API
|
||||
//! \~russian Публичный API HTTP-клиента для выполнения запросов
|
||||
@@ -37,7 +37,7 @@ public:
|
||||
};
|
||||
|
||||
|
||||
//! \~\ingroup HTTP
|
||||
//! \~\ingroup HTTPClient
|
||||
//! \~\brief
|
||||
//! \~english Asynchronous HTTP client request with completion callbacks.
|
||||
//! \~russian Асинхронный HTTP-запрос клиента с callback-ами завершения.
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
//! \~\file microhttpd_server.h
|
||||
//! \~\ingroup HTTP
|
||||
//! \~\ingroup HTTPServer
|
||||
//! \~\brief
|
||||
//! \~english Base HTTP server API built on top of libmicrohttpd
|
||||
//! \~russian Базовый API HTTP-сервера, построенный поверх libmicrohttpd
|
||||
@@ -31,7 +31,7 @@
|
||||
|
||||
struct MicrohttpdServerConnection;
|
||||
|
||||
//! \~\ingroup HTTP
|
||||
//! \~\ingroup HTTPServer
|
||||
//! \~\brief
|
||||
//! \~english Base HTTP server with request dispatch and optional basic authentication.
|
||||
//! \~russian Базовый HTTP-сервер с диспетчеризацией запросов и необязательной basic-аутентификацией.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
//! \addtogroup HTTP
|
||||
//! \addtogroup HTTPServer
|
||||
//! \~\file pihttpserver.h
|
||||
//! \brief High-level HTTP server implementation
|
||||
//! \~english High-level HTTP server with path-based routing and handler registration
|
||||
@@ -27,7 +27,7 @@
|
||||
|
||||
#include "microhttpd_server.h"
|
||||
|
||||
//! \~\ingroup HTTP
|
||||
//! \~\ingroup HTTPServer
|
||||
//! \~\brief
|
||||
//! \~english HTTP server that routes requests by method and path pattern.
|
||||
//! \~russian HTTP-сервер, маршрутизирующий запросы по методу и шаблону пути.
|
||||
|
||||
@@ -1,13 +1,11 @@
|
||||
/*! \file pihttpservermodule.h
|
||||
* \ingroup HTTP
|
||||
* \~\brief
|
||||
* \~english Module include for the public HTTP server API
|
||||
* \~russian Модульный include для публичного API HTTP-сервера
|
||||
*
|
||||
* \~\details
|
||||
* \~english Includes the primary public HTTP server class declarations.
|
||||
* \~russian Подключает основные публичные объявления классов HTTP-сервера.
|
||||
*/
|
||||
//! \file pihttpservermodule.h
|
||||
//! \ingroup HTTPServer
|
||||
//! \~\brief
|
||||
//! \~english Module include for the public HTTP server API
|
||||
//! \~russian Модульный include для публичного API HTTP-сервера
|
||||
//! \~\details
|
||||
//! \~english Includes the primary public HTTP server class declarations.
|
||||
//! \~russian Подключает основные публичные объявления классов HTTP-сервера.
|
||||
/*
|
||||
PIP - Platform Independent Primitives
|
||||
Module includes
|
||||
@@ -26,21 +24,29 @@
|
||||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
//! \defgroup HTTPServer HTTPServer
|
||||
//! \~\brief
|
||||
//! \~english HTTP server
|
||||
//! \~russian HTTP сервер
|
||||
//!
|
||||
//! \~\code
|
||||
//! find_package(PIP REQUIRED)
|
||||
//! target_link_libraries([target] PIP::HTTPServer)
|
||||
//! \endcode
|
||||
//! \~\details
|
||||
//! \~english This file provides includes for the HTTP server module
|
||||
//! \~russian Этот файл предоставляет включения для модуля HTTP сервера
|
||||
//!
|
||||
//! \~\authors
|
||||
//! \~english
|
||||
//! Ivan Pelipenko peri4ko@yandex.ru;
|
||||
//! \~russian
|
||||
//! Иван Пелипенко peri4ko@yandex.ru;
|
||||
//!
|
||||
|
||||
#ifndef pihttpservermodule_H
|
||||
#define pihttpservermodule_H
|
||||
|
||||
//! \~\addtogroup HTTPServer
|
||||
//! \~\{
|
||||
//! \~\file pihttpservermodule.h
|
||||
//! \~\brief HTTP server module includes
|
||||
//! \~english HTTP server module includes
|
||||
//! \~russian Модуль включений HTTP сервера
|
||||
//! \~\details
|
||||
//! \~english This file provides includes for the HTTP server module
|
||||
//! \~russian Этот файл предоставляет включения для модуля HTTP сервера
|
||||
//! \~\}
|
||||
|
||||
#include "pihttpserver.h"
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user