hnluo
2023-08-15 3a71c7a227ebd8b61995e2fb8ee0c3c25a8c19c4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "graphbuilderadapter.h"
 
#include "yaml-cpp/parser.h"  // IWYU pragma: keep
 
namespace YAML {
class GraphBuilderInterface;
 
void* BuildGraphOfNextDocument(Parser& parser,
                               GraphBuilderInterface& graphBuilder) {
  GraphBuilderAdapter eventHandler(graphBuilder);
  if (parser.HandleNextDocument(eventHandler)) {
    return eventHandler.RootNode();
  } else {
    return NULL;
  }
}
}