aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/yson/consumer.cpp
blob: f34f862dda9ee1b1d11e8d04a33aff6ab8d392cb (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