Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yaml-cpp
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
yaml-cpp
Commits
9ad3a1b9
Commit
9ad3a1b9
authored
Oct 18, 2010
by
Jesse Beder
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed the rest of the includes to explicitly state yaml-cpp/
parent
21be19d4
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
26 additions
and
26 deletions
+26
-26
include/yaml-cpp/aliasmanager.h
+1
-1
include/yaml-cpp/conversion.h
+2
-2
include/yaml-cpp/emitfromevents.h
+1
-1
include/yaml-cpp/emitter.h
+3
-3
include/yaml-cpp/eventhandler.h
+1
-1
include/yaml-cpp/exceptions.h
+2
-2
include/yaml-cpp/node.h
+7
-7
include/yaml-cpp/nodeimpl.h
+1
-1
include/yaml-cpp/parser.h
+1
-1
include/yaml-cpp/yaml.h
+7
-7
No files found.
include/yaml-cpp/aliasmanager.h
View file @
9ad3a1b9
...
...
@@ -3,7 +3,7 @@
#ifndef 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>
namespace
YAML
...
...
include/yaml-cpp/conversion.h
View file @
9ad3a1b9
...
...
@@ -4,8 +4,8 @@
#define CONVERSION_H_62B23520_7C8E_11DE_8A39_0800200C9A66
#include "null.h"
#include "traits.h"
#include "
yaml-cpp/
null.h"
#include "
yaml-cpp/
traits.h"
#include <string>
#include <sstream>
...
...
include/yaml-cpp/emitfromevents.h
View file @
9ad3a1b9
...
...
@@ -3,7 +3,7 @@
#ifndef 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>
namespace
YAML
...
...
include/yaml-cpp/emitter.h
View file @
9ad3a1b9
...
...
@@ -4,9 +4,9 @@
#define EMITTER_H_62B23520_7C8E_11DE_8A39_0800200C9A66
#include "emittermanip.h"
#include "ostream.h"
#include "null.h"
#include "
yaml-cpp/
emittermanip.h"
#include "
yaml-cpp/
ostream.h"
#include "
yaml-cpp/
null.h"
#include <memory>
#include <string>
#include <sstream>
...
...
include/yaml-cpp/eventhandler.h
View file @
9ad3a1b9
...
...
@@ -3,7 +3,7 @@
#ifndef 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>
namespace
YAML
...
...
include/yaml-cpp/exceptions.h
View file @
9ad3a1b9
...
...
@@ -4,8 +4,8 @@
#define EXCEPTIONS_H_62B23520_7C8E_11DE_8A39_0800200C9A66
#include "mark.h"
#include "traits.h"
#include "
yaml-cpp/
mark.h"
#include "
yaml-cpp/
traits.h"
#include <exception>
#include <string>
#include <sstream>
...
...
include/yaml-cpp/node.h
View file @
9ad3a1b9
...
...
@@ -4,11 +4,11 @@
#define NODE_H_62B23520_7C8E_11DE_8A39_0800200C9A66
#include "conversion.h"
#include "exceptions.h"
#include "iterator.h"
#include "mark.h"
#include "noncopyable.h"
#include "
yaml-cpp/
conversion.h"
#include "
yaml-cpp/
exceptions.h"
#include "
yaml-cpp/
iterator.h"
#include "
yaml-cpp/
mark.h"
#include "
yaml-cpp/
noncopyable.h"
#include <iostream>
#include <string>
#include <vector>
...
...
@@ -138,7 +138,7 @@ namespace YAML
bool
operator
!=
(
const
Node
&
node
,
const
char
*
value
);
}
#include "nodeimpl.h"
#include "nodereadimpl.h"
#include "
yaml-cpp/
nodeimpl.h"
#include "
yaml-cpp/
nodereadimpl.h"
#endif // NODE_H_62B23520_7C8E_11DE_8A39_0800200C9A66
include/yaml-cpp/nodeimpl.h
View file @
9ad3a1b9
...
...
@@ -4,7 +4,7 @@
#define NODEIMPL_H_62B23520_7C8E_11DE_8A39_0800200C9A66
#include "nodeutil.h"
#include "
yaml-cpp/
nodeutil.h"
namespace
YAML
{
...
...
include/yaml-cpp/parser.h
View file @
9ad3a1b9
...
...
@@ -4,7 +4,7 @@
#define PARSER_H_62B23520_7C8E_11DE_8A39_0800200C9A66
#include "noncopyable.h"
#include "
yaml-cpp/
noncopyable.h"
#include <ios>
#include <memory>
...
...
include/yaml-cpp/yaml.h
View file @
9ad3a1b9
...
...
@@ -4,12 +4,12 @@
#define YAML_H_62B23520_7C8E_11DE_8A39_0800200C9A66
#include "parser.h"
#include "node.h"
#include "stlnode.h"
#include "iterator.h"
#include "emitter.h"
#include "stlemitter.h"
#include "exceptions.h"
#include "
yaml-cpp/
parser.h"
#include "
yaml-cpp/
node.h"
#include "
yaml-cpp/
stlnode.h"
#include "
yaml-cpp/
iterator.h"
#include "
yaml-cpp/
emitter.h"
#include "
yaml-cpp/
stlemitter.h"
#include "
yaml-cpp/
exceptions.h"
#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