consumer.h 330 B

12345678910111213
  1. #pragma once
  2. #include <library/cpp/yt/yson/consumer.h>
  3. #include <util/generic/strbuf.h>
  4. #include <util/system/defaults.h>
  5. namespace NYson {
  6. struct TYsonConsumerBase
  7. : public virtual NYT::NYson::IYsonConsumer {
  8. void OnRaw(TStringBuf ysonNode, NYT::NYson::EYsonType type) override;
  9. };
  10. } // namespace NYson