diff options
author | mironov <mironov@yandex-team.ru> | 2022-02-10 16:49:44 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:49:44 +0300 |
commit | 139799acc0d1251c94200128757ef38926775ab3 (patch) | |
tree | d41dd1307dace9324f307445bd24b77ca48e5bd5 /library/cpp/http/io/headers.h | |
parent | bd81267834e145340b7d7441308b87ccefcad980 (diff) | |
download | ydb-139799acc0d1251c94200128757ef38926775ab3.tar.gz |
Restoring authorship annotation for <mironov@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/http/io/headers.h')
-rw-r--r-- | library/cpp/http/io/headers.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/library/cpp/http/io/headers.h b/library/cpp/http/io/headers.h index a71793d1c6..08bf2aef63 100644 --- a/library/cpp/http/io/headers.h +++ b/library/cpp/http/io/headers.h @@ -9,9 +9,9 @@ class IInputStream; class IOutputStream; -/// @addtogroup Streams_HTTP -/// @{ -/// Объект, содержащий информацию о HTTP-заголовке. +/// @addtogroup Streams_HTTP +/// @{ +/// Объект, содержащий информацию о HTTP-заголовке. class THttpInputHeader { public: /// @param[in] header - строка вида 'параметр: значение'. @@ -43,7 +43,7 @@ private: TString Value_; }; -/// Контейнер для хранения HTTP-заголовков +/// Контейнер для хранения HTTP-заголовков class THttpHeaders { using THeaders = TDeque<THttpInputHeader>; @@ -80,7 +80,7 @@ public: inline bool Empty() const noexcept { return Headers_.empty(); } - + /// Добавляет заголовок в контейнер. void AddHeader(THttpInputHeader header); @@ -122,4 +122,4 @@ private: THeaders Headers_; }; -/// @} +/// @} |