Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
gaoqiong
yaml-cpp
Commits
9ad3a1b9
Commit
9ad3a1b9
authored
Oct 18, 2010
by
Jesse Beder
Browse files
Fixed the rest of the includes to explicitly state yaml-cpp/
parent
21be19d4
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
26 additions
and
26 deletions
+26
-26
include/yaml-cpp/aliasmanager.h
include/yaml-cpp/aliasmanager.h
+1
-1
include/yaml-cpp/conversion.h
include/yaml-cpp/conversion.h
+2
-2
include/yaml-cpp/emitfromevents.h
include/yaml-cpp/emitfromevents.h
+1
-1
include/yaml-cpp/emitter.h
include/yaml-cpp/emitter.h
+3
-3
include/yaml-cpp/eventhandler.h
include/yaml-cpp/eventhandler.h
+1
-1
include/yaml-cpp/exceptions.h
include/yaml-cpp/exceptions.h
+2
-2
include/yaml-cpp/node.h
include/yaml-cpp/node.h
+7
-7
include/yaml-cpp/nodeimpl.h
include/yaml-cpp/nodeimpl.h
+1
-1
include/yaml-cpp/parser.h
include/yaml-cpp/parser.h
+1
-1
include/yaml-cpp/yaml.h
include/yaml-cpp/yaml.h
+7
-7
No files found.
include/yaml-cpp/aliasmanager.h
View file @
9ad3a1b9
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
#ifndef ALIASMANAGER_H_62B23520_7C8E_11DE_8A39_0800200C9A66
#ifndef ALIASMANAGER_H_62B23520_7C8E_11DE_8A39_0800200C9A66
#define ALIASMANAGER_H_62B23520_7C8E_11DE_8A39_0800200C9A66
#define ALIASMANAGER_H_62B23520_7C8E_11DE_8A39_0800200C9A66
#include "anchor.h"
#include "
yaml-cpp/
anchor.h"
#include <map>
#include <map>
namespace
YAML
namespace
YAML
...
...
include/yaml-cpp/conversion.h
View file @
9ad3a1b9
...
@@ -4,8 +4,8 @@
...
@@ -4,8 +4,8 @@
#define CONVERSION_H_62B23520_7C8E_11DE_8A39_0800200C9A66
#define CONVERSION_H_62B23520_7C8E_11DE_8A39_0800200C9A66
#include "null.h"
#include "
yaml-cpp/
null.h"
#include "traits.h"
#include "
yaml-cpp/
traits.h"
#include <string>
#include <string>
#include <sstream>
#include <sstream>
...
...
include/yaml-cpp/emitfromevents.h
View file @
9ad3a1b9
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
#ifndef EMITFROMEVENTS_H_62B23520_7C8E_11DE_8A39_0800200C9A66
#ifndef EMITFROMEVENTS_H_62B23520_7C8E_11DE_8A39_0800200C9A66
#define EMITFROMEVENTS_H_62B23520_7C8E_11DE_8A39_0800200C9A66
#define EMITFROMEVENTS_H_62B23520_7C8E_11DE_8A39_0800200C9A66
#include "eventhandler.h"
#include "
yaml-cpp/
eventhandler.h"
#include <stack>
#include <stack>
namespace
YAML
namespace
YAML
...
...
include/yaml-cpp/emitter.h
View file @
9ad3a1b9
...
@@ -4,9 +4,9 @@
...
@@ -4,9 +4,9 @@
#define EMITTER_H_62B23520_7C8E_11DE_8A39_0800200C9A66
#define EMITTER_H_62B23520_7C8E_11DE_8A39_0800200C9A66
#include "emittermanip.h"
#include "
yaml-cpp/
emittermanip.h"
#include "ostream.h"
#include "
yaml-cpp/
ostream.h"
#include "null.h"
#include "
yaml-cpp/
null.h"
#include <memory>
#include <memory>
#include <string>
#include <string>
#include <sstream>
#include <sstream>
...
...
include/yaml-cpp/eventhandler.h
View file @
9ad3a1b9
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
#ifndef EVENTHANDLER_H_62B23520_7C8E_11DE_8A39_0800200C9A66
#ifndef EVENTHANDLER_H_62B23520_7C8E_11DE_8A39_0800200C9A66
#define EVENTHANDLER_H_62B23520_7C8E_11DE_8A39_0800200C9A66
#define EVENTHANDLER_H_62B23520_7C8E_11DE_8A39_0800200C9A66
#include "anchor.h"
#include "
yaml-cpp/
anchor.h"
#include <string>
#include <string>
namespace
YAML
namespace
YAML
...
...
include/yaml-cpp/exceptions.h
View file @
9ad3a1b9
...
@@ -4,8 +4,8 @@
...
@@ -4,8 +4,8 @@
#define EXCEPTIONS_H_62B23520_7C8E_11DE_8A39_0800200C9A66
#define EXCEPTIONS_H_62B23520_7C8E_11DE_8A39_0800200C9A66
#include "mark.h"
#include "
yaml-cpp/
mark.h"
#include "traits.h"
#include "
yaml-cpp/
traits.h"
#include <exception>
#include <exception>
#include <string>
#include <string>
#include <sstream>
#include <sstream>
...
...
include/yaml-cpp/node.h
View file @
9ad3a1b9
...
@@ -4,11 +4,11 @@
...
@@ -4,11 +4,11 @@
#define NODE_H_62B23520_7C8E_11DE_8A39_0800200C9A66
#define NODE_H_62B23520_7C8E_11DE_8A39_0800200C9A66
#include "conversion.h"
#include "
yaml-cpp/
conversion.h"
#include "exceptions.h"
#include "
yaml-cpp/
exceptions.h"
#include "iterator.h"
#include "
yaml-cpp/
iterator.h"
#include "mark.h"
#include "
yaml-cpp/
mark.h"
#include "noncopyable.h"
#include "
yaml-cpp/
noncopyable.h"
#include <iostream>
#include <iostream>
#include <string>
#include <string>
#include <vector>
#include <vector>
...
@@ -138,7 +138,7 @@ namespace YAML
...
@@ -138,7 +138,7 @@ namespace YAML
bool
operator
!=
(
const
Node
&
node
,
const
char
*
value
);
bool
operator
!=
(
const
Node
&
node
,
const
char
*
value
);
}
}
#include "nodeimpl.h"
#include "
yaml-cpp/
nodeimpl.h"
#include "nodereadimpl.h"
#include "
yaml-cpp/
nodereadimpl.h"
#endif // NODE_H_62B23520_7C8E_11DE_8A39_0800200C9A66
#endif // NODE_H_62B23520_7C8E_11DE_8A39_0800200C9A66
include/yaml-cpp/nodeimpl.h
View file @
9ad3a1b9
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
#define NODEIMPL_H_62B23520_7C8E_11DE_8A39_0800200C9A66
#define NODEIMPL_H_62B23520_7C8E_11DE_8A39_0800200C9A66
#include "nodeutil.h"
#include "
yaml-cpp/
nodeutil.h"
namespace
YAML
namespace
YAML
{
{
...
...
include/yaml-cpp/parser.h
View file @
9ad3a1b9
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
#define PARSER_H_62B23520_7C8E_11DE_8A39_0800200C9A66
#define PARSER_H_62B23520_7C8E_11DE_8A39_0800200C9A66
#include "noncopyable.h"
#include "
yaml-cpp/
noncopyable.h"
#include <ios>
#include <ios>
#include <memory>
#include <memory>
...
...
include/yaml-cpp/yaml.h
View file @
9ad3a1b9
...
@@ -4,12 +4,12 @@
...
@@ -4,12 +4,12 @@
#define YAML_H_62B23520_7C8E_11DE_8A39_0800200C9A66
#define YAML_H_62B23520_7C8E_11DE_8A39_0800200C9A66
#include "parser.h"
#include "
yaml-cpp/
parser.h"
#include "node.h"
#include "
yaml-cpp/
node.h"
#include "stlnode.h"
#include "
yaml-cpp/
stlnode.h"
#include "iterator.h"
#include "
yaml-cpp/
iterator.h"
#include "emitter.h"
#include "
yaml-cpp/
emitter.h"
#include "stlemitter.h"
#include "
yaml-cpp/
stlemitter.h"
#include "exceptions.h"
#include "
yaml-cpp/
exceptions.h"
#endif // YAML_H_62B23520_7C8E_11DE_8A39_0800200C9A66
#endif // YAML_H_62B23520_7C8E_11DE_8A39_0800200C9A66
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment