blob: b343a63722a302dd5ec39753c5edc19383d8e52b (
plain) (
blame)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
 | #pragma once
#include <library/cpp/yt/misc/enum.h>
#include <util/generic/yexception.h>
#include <library/cpp/yt/yson_string/public.h>
#include <library/cpp/yt/yson/public.h>
namespace NYson { 
    ////////////////////////////////////////////////////////////////////////////////
    using NYT::NYson::EYsonFormat;
    using NYT::NYson::EYsonType;
    class TYsonStringBuf;
    struct TYsonConsumerBase; 
    class TYsonWriter; 
    class TYsonParser; 
    class TStatelessYsonParser; 
    class TYsonListParser; 
 
    class TYsonException
       : public yexception {};
    ////////////////////////////////////////////////////////////////////////////////
} // namespace NYson 
 |