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 | ceabccd128eb94ed6566936fcab2093ec62aa84a (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /library/cpp/http/io/headers.h | |
parent | 139799acc0d1251c94200128757ef38926775ab3 (diff) | |
download | ydb-ceabccd128eb94ed6566936fcab2093ec62aa84a.tar.gz |
Restoring authorship annotation for <mironov@yandex-team.ru>. Commit 2 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 08bf2aef63..a71793d1c6 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_; }; -/// @} +/// @} |