Loading [MathJax]/extensions/tex2jax.js
Free Electron
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
ext/yaml/yaml-cpp/include/yaml-cpp/node/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 <memory>
11 
12 namespace YAML {
13 namespace detail {
14 class node;
15 class node_ref;
16 class node_data;
17 class memory;
18 class memory_holder;
19 
20 using shared_node = std::shared_ptr<node>;
21 using shared_node_ref = std::shared_ptr<node_ref>;
22 using shared_node_data = std::shared_ptr<node_data>;
23 using shared_memory_holder = std::shared_ptr<memory_holder>;
24 using shared_memory = std::shared_ptr<memory>;
25 }
26 }
27 
28 #endif // VALUE_PTR_H_62B23520_7C8E_11DE_8A39_0800200C9A66
Definition: anchor.h:12