more ai generated doc with human review
This commit is contained in:
@@ -1,3 +1,14 @@
|
||||
//! \addtogroup HTTP
|
||||
//! \{
|
||||
//! \file pihttpserver.h
|
||||
//! \brief High-level HTTP server implementation
|
||||
//! \~english High-level HTTP server with path-based routing and handler registration
|
||||
//! \~russian Высокоуровневый HTTP сервер с маршрутизацией по путям и регистрацией обработчиков
|
||||
//! \details
|
||||
//! \~english Provides path-based request routing and handler management
|
||||
//! \~russian Обеспечивает маршрутизацию запросов по путям и управление обработчиками
|
||||
//! \}
|
||||
|
||||
#ifndef PIHTTPSERVER_H
|
||||
#define PIHTTPSERVER_H
|
||||
|
||||
@@ -9,7 +20,11 @@ class PIP_HTTP_SERVER_EXPORT PIHTTPServer: public MicrohttpdServer {
|
||||
PIOBJECT_SUBCLASS(PIHTTPServer, MicrohttpdServer)
|
||||
|
||||
public:
|
||||
//! \~english Constructs a new HTTP server
|
||||
//! \~russian Создает новый HTTP сервер
|
||||
PIHTTPServer();
|
||||
//! \~english Destroys the HTTP server
|
||||
//! \~russian Уничтожает HTTP сервер
|
||||
virtual ~PIHTTPServer();
|
||||
|
||||
using RequestFunction = std::function<PIHTTP::MessageMutable(const PIHTTP::MessageConst &)>;
|
||||
|
||||
Reference in New Issue
Block a user