aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/yson/consumer.cpp
blob: 6f9f975bb6dae171bbc3dcf42371a74d8cc69290 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "consumer.h"
#include "string.h"
#include "parser.h"

namespace NYson {

    //////////////////////////////////////////////////////////////////////////////// 

    void TYsonConsumerBase::OnRaw(TStringBuf str, NYT::NYson::EYsonType type) {
        ParseYsonStringBuffer(str, this, type);
    } 

    //////////////////////////////////////////////////////////////////////////////// 
 
} // namespace NYson