diff options
author | stepych <stepych@yandex-team.ru> | 2022-02-10 16:50:51 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:50:51 +0300 |
commit | 252a6c9fbded23dfee8729dc34c97159962216a7 (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /library/cpp/uri/qargs.h | |
parent | e43b253871ab6f365f22f9a139a082da542d32f7 (diff) | |
download | ydb-252a6c9fbded23dfee8729dc34c97159962216a7.tar.gz |
Restoring authorship annotation for <stepych@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/uri/qargs.h')
-rw-r--r-- | library/cpp/uri/qargs.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/library/cpp/uri/qargs.h b/library/cpp/uri/qargs.h index 5dd9e43674..fcba7cbd0c 100644 --- a/library/cpp/uri/qargs.h +++ b/library/cpp/uri/qargs.h @@ -1,22 +1,22 @@ -#pragma once - -#include "common.h" -#include "uri.h" -#include <string> - -namespace NUri { +#pragma once + +#include "common.h" +#include "uri.h" +#include <string> + +namespace NUri { class TQueryArgProcessing { public: TQueryArgProcessing(ui32 flags, TQueryArgFilter filter = 0, void* filterData = 0); - + TQueryArg::EProcessed Process(TUri& uri); - + private: ui32 Flags; TQueryArgFilter Filter; void* FilterData; - + class Pipeline; std::string Buffer; }; -} +} |