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