blob: d5a9d663355384399d2812b6ef70fa81334e2ac1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
#include <library/cpp/yt/yson/consumer.h>
#include <util/generic/strbuf.h>
#include <util/system/defaults.h>
namespace NYson {
struct TYsonConsumerBase
: public virtual NYT::NYson::IYsonConsumer {
void OnRaw(TStringBuf ysonNode, NYT::NYson::EYsonType type) override;
};
} // namespace NYson
|