BRE12
ptr.h
1 #ifndef VALUE_PTR_H_62B23520_7C8E_11DE_8A39_0800200C9A66
2 #define VALUE_PTR_H_62B23520_7C8E_11DE_8A39_0800200C9A66
3 
4 #if defined(_MSC_VER) || \
5  (defined(__GNUC__) && (__GNUC__ == 3 && __GNUC_MINOR__ >= 4) || \
6  (__GNUC__ >= 4)) // GCC supports "pragma once" correctly since 3.4
7 #pragma once
8 #endif
9 
10 #include "yaml-cpp/dll.h"
11 #include <memory>
12 
13 namespace YAML {
14 namespace detail {
15 class node;
16 class node_ref;
17 class node_data;
18 class memory;
19 class memory_holder;
20 
21 typedef std::shared_ptr<node> shared_node;
22 typedef std::shared_ptr<node_ref> shared_node_ref;
23 typedef std::shared_ptr<node_data> shared_node_data;
24 typedef std::shared_ptr<memory_holder> shared_memory_holder;
25 typedef std::shared_ptr<memory> shared_memory;
26 }
27 }
28 
29 #endif // VALUE_PTR_H_62B23520_7C8E_11DE_8A39_0800200C9A66
Definition: DrawableObjectLoader.h:10