1234567891011121314151617181920212223 |
- #ifndef BOOST_CSBL_MEMORY_SHARED_PTR_HPP
- #define BOOST_CSBL_MEMORY_SHARED_PTR_HPP
- #include <boost/thread/csbl/memory/config.hpp>
- namespace boost
- {
- namespace csbl
- {
- using std::shared_ptr;
- using std::make_shared;
- }
- }
- #endif
|