This commit is contained in:
2026-03-12 19:11:28 +03:00
parent ed13838237
commit d758cea974
6 changed files with 738 additions and 84 deletions

View File

@@ -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