64 lines
2.4 KiB
C
64 lines
2.4 KiB
C
//! \~\file pihttpclientmodule.h
|
|
//! \~\ingroup HTTPClient
|
|
//! \~\brief
|
|
//! \~english HTTP client module includes for PIP library
|
|
//! \~russian Модуль инклюдов HTTP клиента для библиотеки PIP
|
|
//! \details
|
|
//! \~english
|
|
//! This file includes all HTTP client module headers providing async HTTP client functionality
|
|
//! using libcurl for performing HTTP requests with callbacks.
|
|
//! \~russian
|
|
//! Этот файл включает все заголовки модуля HTTP клиента, предоставляющие функциональность
|
|
//! асинхронного HTTP клиента с использованием libcurl.
|
|
/*
|
|
PIP - Platform Independent Primitives
|
|
Module includes
|
|
Ivan Pelipenko peri4ko@yandex.ru
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Lesser General Public License for more details.
|
|
|
|
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 HTTPClient HTTPClient
|
|
//! \~\brief
|
|
//! \~english HTTP client
|
|
//! \~russian HTTP клиент
|
|
//!
|
|
//! \~\details
|
|
//! \~english \section cmake_module_HTTPClient Building with CMake
|
|
//! \~russian \section cmake_module_HTTPClient Сборка с использованием CMake
|
|
//!
|
|
//! \~\code
|
|
//! find_package(PIP REQUIRED)
|
|
//! target_link_libraries([target] PIP::HTTPClient)
|
|
//! \endcode
|
|
//!
|
|
//! \~\details
|
|
//! \~english
|
|
//! These files provide HTTP client functionality using libcurl for performing asynchronous HTTP requests with callbacks.
|
|
//! \~russian
|
|
//! Эти файлы предоставляют функциональность HTTP клиента с использованием libcurl для выполнения асинхронных HTTP запросов с callback-ми.
|
|
//!
|
|
//! \~\authors
|
|
//! \~english
|
|
//! Ivan Pelipenko peri4ko@yandex.ru;
|
|
//! \~russian
|
|
//! Иван Пелипенко peri4ko@yandex.ru;
|
|
//!
|
|
|
|
#ifndef pihttpclientmodule_H
|
|
#define pihttpclientmodule_H
|
|
|
|
#include "pihttpclient.h"
|
|
|
|
#endif
|