Make nodebuilder part of the public API

This commit is contained in:
Daniel D'Avella 2018-05-10 10:32:01 -04:00 committed by Daniel D'Avella
parent 28741f5892
commit f881758b84
4 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
#include "yaml-cpp/node/node.h"
#include "nodebuilder.h"
#include "yaml-cpp/nodebuilder.h"
#include "nodeevents.h"
namespace YAML {

View File

@ -1,7 +1,7 @@
#include <assert.h>
#include <cassert>
#include "nodebuilder.h"
#include "yaml-cpp/nodebuilder.h"
#include "yaml-cpp/node/detail/node.h"
#include "yaml-cpp/node/impl.h"
#include "yaml-cpp/node/node.h"

View File

@ -6,7 +6,7 @@
#include "yaml-cpp/node/node.h"
#include "yaml-cpp/node/impl.h"
#include "yaml-cpp/parser.h"
#include "nodebuilder.h"
#include "yaml-cpp/nodebuilder.h"
namespace YAML {
Node Load(const std::string& input) {