consumer.cpp 391 B

12345678910111213141516
  1. #include "consumer.h"
  2. #include <library/cpp/yt/yson_string/string.h>
  3. namespace NYT::NYson {
  4. ////////////////////////////////////////////////////////////////////////////////
  5. void IYsonConsumer::OnRaw(const TYsonStringBuf& yson)
  6. {
  7. OnRaw(yson.AsStringBuf(), yson.GetType());
  8. }
  9. ////////////////////////////////////////////////////////////////////////////////
  10. } // namespace NYT::NYson