diff options
author | kostik <kostik@yandex-team.ru> | 2022-02-10 16:49:22 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:49:22 +0300 |
commit | 89516f2fd8e143755ba2973385407d77676b18a0 (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /library/cpp/yson/parser.h | |
parent | f7619e21ba894db354477390e8fe96256a6eb14a (diff) | |
download | ydb-89516f2fd8e143755ba2973385407d77676b18a0.tar.gz |
Restoring authorship annotation for <kostik@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/yson/parser.h')
-rw-r--r-- | library/cpp/yson/parser.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/library/cpp/yson/parser.h b/library/cpp/yson/parser.h index c83fd921f4e..dce35a8cd40 100644 --- a/library/cpp/yson/parser.h +++ b/library/cpp/yson/parser.h @@ -61,23 +61,23 @@ namespace NYson { TMaybe<ui64> memoryLimit = Nothing()); ~TYsonListParser(); - + bool Parse(); // Returns false, if there is no more list items - + private: class TImpl; THolder<TImpl> Impl; }; - + //////////////////////////////////////////////////////////////////////////////// - + void ParseYsonStringBuffer( const TStringBuf& buffer, NYT::NYson::IYsonConsumer* consumer, EYsonType type = ::NYson::EYsonType::Node, bool enableLinePositionInfo = false, TMaybe<ui64> memoryLimit = Nothing()); - + //////////////////////////////////////////////////////////////////////////////// } // namespace NYson |