aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/yt/yson/consumer.cpp
blob: d3aec4aa5e6cade3c311bfaae881f610d67d3405 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "consumer.h" 
 
#include <library/cpp/yt/yson_string/string.h> 
 
namespace NYT::NYson { 
 
//////////////////////////////////////////////////////////////////////////////// 
 
void IYsonConsumer::OnRaw(const TYsonStringBuf& yson)
{
    OnRaw(yson.AsStringBuf(), yson.GetType()); 
} 
 
//////////////////////////////////////////////////////////////////////////////// 
 
} // namespace NYT::NYson