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