blob: 52d160c6cc8ef02cf512ef6ecc6232b0dbc228a7 (
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
|