1 #ifndef VALUE_PTR_H_62B23520_7C8E_11DE_8A39_0800200C9A66 2 #define VALUE_PTR_H_62B23520_7C8E_11DE_8A39_0800200C9A66 4 #if defined(_MSC_VER) || \ 5 (defined(__GNUC__) && (__GNUC__ == 3 && __GNUC_MINOR__ >= 4) || \ 6 (__GNUC__ >= 4)) // GCC supports "pragma once" correctly since 3.4 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>;
28 #endif // VALUE_PTR_H_62B23520_7C8E_11DE_8A39_0800200C9A66