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 | e43b253871ab6f365f22f9a139a082da542d32f7 (patch) | |
tree | ff1cbc0a584180ffb1b3cb801e24c53df865044c /library/cpp/uri/qargs.h | |
parent | 516d85cb3e198d4461ddfe35c5f05928948a5c40 (diff) | |
download | ydb-e43b253871ab6f365f22f9a139a082da542d32f7.tar.gz |
Restoring authorship annotation for <stepych@yandex-team.ru>. Commit 1 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 fcba7cbd0c..5dd9e43674 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; }; -} +} |