Moved all the includes to a subfolder yaml-cpp so they don't interfere with other libraries' includes

This commit is contained in:
Jesse Beder
2010-10-18 07:05:53 +00:00
parent a71c03a18b
commit 5b8ca9ce01
62 changed files with 62 additions and 62 deletions

View File

@@ -1,5 +1,5 @@
#include "aliasmanager.h"
#include "node.h"
#include "yaml-cpp/aliasmanager.h"
#include "yaml-cpp/node.h"
#include <cassert>
#include <sstream>

View File

@@ -1,5 +1,5 @@
#include "content.h"
#include "node.h"
#include "yaml-cpp/node.h"
#include <cassert>
namespace YAML

View File

@@ -4,8 +4,8 @@
#define CONTENT_H_62B23520_7C8E_11DE_8A39_0800200C9A66
#include "anchor.h"
#include "exceptions.h"
#include "yaml-cpp/anchor.h"
#include "yaml-cpp/exceptions.h"
#include "ltnode.h"
#include <map>
#include <memory>

View File

@@ -1,4 +1,4 @@
#include "conversion.h"
#include "yaml-cpp/conversion.h"
#include <algorithm>
////////////////////////////////////////////////////////////////

View File

@@ -1,6 +1,6 @@
#include "emitfromevents.h"
#include "emitter.h"
#include "null.h"
#include "yaml-cpp/emitfromevents.h"
#include "yaml-cpp/emitter.h"
#include "yaml-cpp/null.h"
#include <cassert>
#include <sstream>

View File

@@ -1,8 +1,8 @@
#include "emitter.h"
#include "yaml-cpp/emitter.h"
#include "emitterstate.h"
#include "emitterutils.h"
#include "indentation.h"
#include "exceptions.h"
#include "yaml-cpp/exceptions.h"
#include <sstream>
namespace YAML

View File

@@ -1,5 +1,5 @@
#include "emitterstate.h"
#include "exceptions.h"
#include "yaml-cpp/exceptions.h"
namespace YAML
{

View File

@@ -5,7 +5,7 @@
#include "setting.h"
#include "emittermanip.h"
#include "yaml-cpp/emittermanip.h"
#include <cassert>
#include <vector>
#include <stack>

View File

@@ -1,7 +1,7 @@
#include "emitterutils.h"
#include "exp.h"
#include "indentation.h"
#include "exceptions.h"
#include "yaml-cpp/exceptions.h"
#include "stringsource.h"
#include <sstream>
#include <iomanip>

View File

@@ -4,7 +4,7 @@
#define EMITTERUTILS_H_62B23520_7C8E_11DE_8A39_0800200C9A66
#include "ostream.h"
#include "yaml-cpp/ostream.h"
#include <string>
namespace YAML

View File

@@ -1,5 +1,5 @@
#include "exp.h"
#include "exceptions.h"
#include "yaml-cpp/exceptions.h"
#include <sstream>
namespace YAML

View File

@@ -4,7 +4,7 @@
#define INDENTATION_H_62B23520_7C8E_11DE_8A39_0800200C9A66
#include "ostream.h"
#include "yaml-cpp/ostream.h"
#include <iostream>
namespace YAML

View File

@@ -1,5 +1,5 @@
#include "node.h"
#include "exceptions.h"
#include "yaml-cpp/node.h"
#include "yaml-cpp/exceptions.h"
#include "iterpriv.h"
namespace YAML

View File

@@ -1,7 +1,7 @@
#include "map.h"
#include "node.h"
#include "eventhandler.h"
#include "exceptions.h"
#include "yaml-cpp/node.h"
#include "yaml-cpp/eventhandler.h"
#include "yaml-cpp/exceptions.h"
namespace YAML
{

View File

@@ -1,14 +1,14 @@
#include "node.h"
#include "yaml-cpp/node.h"
#include "aliascontent.h"
#include "aliasmanager.h"
#include "yaml-cpp/aliasmanager.h"
#include "content.h"
#include "emitfromevents.h"
#include "emitter.h"
#include "eventhandler.h"
#include "yaml-cpp/emitfromevents.h"
#include "yaml-cpp/emitter.h"
#include "yaml-cpp/eventhandler.h"
#include "iterpriv.h"
#include "map.h"
#include "nodebuilder.h"
#include "nodeproperties.h"
#include "yaml-cpp/nodeproperties.h"
#include "scalar.h"
#include "scanner.h"
#include "sequence.h"

View File

@@ -1,7 +1,7 @@
#include "nodebuilder.h"
#include "mark.h"
#include "node.h"
#include "nodeproperties.h"
#include "yaml-cpp/mark.h"
#include "yaml-cpp/node.h"
#include "yaml-cpp/nodeproperties.h"
#include <cassert>
namespace YAML

View File

@@ -3,7 +3,7 @@
#ifndef NODEBUILDER_H_62B23520_7C8E_11DE_8A39_0800200C9A66
#define NODEBUILDER_H_62B23520_7C8E_11DE_8A39_0800200C9A66
#include "eventhandler.h"
#include "yaml-cpp/eventhandler.h"
#include "ptr_stack.h"
#include <map>
#include <memory>

View File

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

View File

@@ -1,4 +1,4 @@
#include "ostream.h"
#include "yaml-cpp/ostream.h"
#include <cstring>
namespace YAML

View File

@@ -1,8 +1,8 @@
#include "parser.h"
#include "yaml-cpp/parser.h"
#include "directives.h"
#include "eventhandler.h"
#include "exceptions.h"
#include "node.h"
#include "yaml-cpp/eventhandler.h"
#include "yaml-cpp/exceptions.h"
#include "yaml-cpp/node.h"
#include "nodebuilder.h"
#include "scanner.h"
#include "singledocparser.h"

View File

@@ -3,7 +3,7 @@
#ifndef PTR_STACK_H_62B23520_7C8E_11DE_8A39_0800200C9A66
#define PTR_STACK_H_62B23520_7C8E_11DE_8A39_0800200C9A66
#include "noncopyable.h"
#include "yaml-cpp/noncopyable.h"
#include <memory>
#include <vector>

View File

@@ -1,5 +1,5 @@
#include "scalar.h"
#include "eventhandler.h"
#include "yaml-cpp/eventhandler.h"
namespace YAML
{

View File

@@ -1,6 +1,6 @@
#include "scanner.h"
#include "token.h"
#include "exceptions.h"
#include "yaml-cpp/exceptions.h"
#include "exp.h"
#include <cassert>
#include <memory>

View File

@@ -1,7 +1,7 @@
#include "scanscalar.h"
#include "scanner.h"
#include "exp.h"
#include "exceptions.h"
#include "yaml-cpp/exceptions.h"
#include "token.h"
namespace YAML

View File

@@ -1,7 +1,7 @@
#include "scanner.h"
#include "regex.h"
#include "exp.h"
#include "exceptions.h"
#include "yaml-cpp/exceptions.h"
namespace YAML
{

View File

@@ -1,6 +1,6 @@
#include "scanner.h"
#include "token.h"
#include "exceptions.h"
#include "yaml-cpp/exceptions.h"
#include "exp.h"
#include "scanscalar.h"
#include "scantag.h"

View File

@@ -1,6 +1,6 @@
#include "sequence.h"
#include "eventhandler.h"
#include "node.h"
#include "yaml-cpp/eventhandler.h"
#include "yaml-cpp/node.h"
#include <stdexcept>
namespace YAML

View File

@@ -6,7 +6,7 @@
#include <memory>
#include <vector>
#include "noncopyable.h"
#include "yaml-cpp/noncopyable.h"
namespace YAML
{

View File

@@ -1,6 +1,6 @@
#include "scanner.h"
#include "token.h"
#include "exceptions.h"
#include "yaml-cpp/exceptions.h"
#include "exp.h"
namespace YAML

View File

@@ -1,8 +1,8 @@
#include "singledocparser.h"
#include "collectionstack.h"
#include "directives.h"
#include "eventhandler.h"
#include "exceptions.h"
#include "yaml-cpp/eventhandler.h"
#include "yaml-cpp/exceptions.h"
#include "scanner.h"
#include "tag.h"
#include "token.h"

View File

@@ -4,8 +4,8 @@
#define SINGLEDOCPARSER_H_62B23520_7C8E_11DE_8A39_0800200C9A66
#include "anchor.h"
#include "noncopyable.h"
#include "yaml-cpp/anchor.h"
#include "yaml-cpp/noncopyable.h"
#include <string>
#include <map>
#include <memory>

View File

@@ -4,8 +4,8 @@
#define STREAM_H_62B23520_7C8E_11DE_8A39_0800200C9A66
#include "noncopyable.h"
#include "mark.h"
#include "yaml-cpp/noncopyable.h"
#include "yaml-cpp/mark.h"
#include <deque>
#include <ios>
#include <string>

View File

@@ -4,7 +4,7 @@
#define STREAMCHARSOURCE_H_62B23520_7C8E_11DE_8A39_0800200C9A66
#include "noncopyable.h"
#include "yaml-cpp/noncopyable.h"
#include <cstddef>
namespace YAML

View File

@@ -4,7 +4,7 @@
#define TOKEN_H_62B23520_7C8E_11DE_8A39_0800200C9A66
#include "mark.h"
#include "yaml-cpp/mark.h"
#include <iostream>
#include <string>
#include <vector>