diff options
author | qkrorlqr <qkrorlqr@yandex-team.ru> | 2022-02-10 16:47:21 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:47:21 +0300 |
commit | eec632e483ae34bc211138c67434b1e0e6054ced (patch) | |
tree | 9814fbd1c3effac9b8377c5d604b367b14e2db55 /library/cpp/yson/writer.h | |
parent | 9b89266638b10d40309e31dcb7caa2fc52b2aefd (diff) | |
download | ydb-eec632e483ae34bc211138c67434b1e0e6054ced.tar.gz |
Restoring authorship annotation for <qkrorlqr@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/yson/writer.h')
-rw-r--r-- | library/cpp/yson/writer.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/library/cpp/yson/writer.h b/library/cpp/yson/writer.h index 79e19d0df5..40f5d7d501 100644 --- a/library/cpp/yson/writer.h +++ b/library/cpp/yson/writer.h @@ -23,14 +23,14 @@ namespace NYson { friend class TYsonWriter; }; - + public: TYsonWriter( IOutputStream* stream, EYsonFormat format = EYsonFormat::Binary, EYsonType type = ::NYson::EYsonType::Node, bool enableRaw = false); - + void OnStringScalar(TStringBuf value) override; void OnInt64Scalar(i64 value) override; void OnUint64Scalar(ui64 value) override; @@ -59,7 +59,7 @@ namespace NYson { EYsonFormat Format; EYsonType Type; bool EnableRaw; - + int Depth; bool BeforeFirstItem; |