read.cpp 881 Bytes
Newer Older
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
#include "yaml-cpp/yaml.h"
#include "yaml-cpp/eventhandler.h"
#include <iostream>

class NullEventHandler: public YAML::EventHandler
{
public:
    typedef YAML::Mark Mark;
    typedef YAML::anchor_t anchor_t;
    
    NullEventHandler() {}
    
    virtual void OnDocumentStart(const Mark&) {}
    virtual void OnDocumentEnd() {}
    virtual void OnNull(const Mark&, anchor_t) {}
    virtual void OnAlias(const Mark&, anchor_t) {}
    virtual void OnScalar(const Mark&, const std::string&, anchor_t, const std::string&) {}
    virtual void OnSequenceStart(const Mark&, const std::string&, anchor_t) {}
    virtual void OnSequenceEnd() {}
    virtual void OnMapStart(const Mark&, const std::string&, anchor_t) {}
    virtual void OnMapEnd() {}
};

int main()
{
    YAML::Parser parser(std::cin);
    NullEventHandler handler;
    parser.HandleNextDocument(handler);
    return 0;
}