diff options
author | Anton Samokhvalov <pg83@yandex.ru> | 2022-02-10 16:45:15 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:45:15 +0300 |
commit | 72cb13b4aff9bc9cf22e49251bc8fd143f82538f (patch) | |
tree | da2c34829458c7d4e74bdfbdf85dff449e9e7fb8 /library/cpp/yson_pull/consumer.h | |
parent | 778e51ba091dc39e7b7fcab2b9cf4dbedfb6f2b5 (diff) | |
download | ydb-72cb13b4aff9bc9cf22e49251bc8fd143f82538f.tar.gz |
Restoring authorship annotation for Anton Samokhvalov <pg83@yandex.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/yson_pull/consumer.h')
-rw-r--r-- | library/cpp/yson_pull/consumer.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/library/cpp/yson_pull/consumer.h b/library/cpp/yson_pull/consumer.h index f3b1398d4c..64d255a0cb 100644 --- a/library/cpp/yson_pull/consumer.h +++ b/library/cpp/yson_pull/consumer.h @@ -6,9 +6,9 @@ #include <util/system/types.h> namespace NYsonPull { - class IConsumer { - public: - virtual ~IConsumer() = default; + class IConsumer { + public: + virtual ~IConsumer() = default; virtual void OnBeginStream() = 0; virtual void OnEndStream() = 0; @@ -33,5 +33,5 @@ namespace NYsonPull { virtual void OnScalar(const TScalar& value); virtual void OnEvent(const TEvent& value); - }; -} + }; +} |