Chipmunk++
 All Classes Functions Variables Pages
memory.hpp
1 #pragma once
2 
3 #ifdef CHIPMUNKPP_BOOST
4 
5 #include <boost/shared_ptr.hpp>
6 #include <boost/weak_ptr.hpp>
7 #include <boost/make_shared.hpp>
8 #include <boost/function.hpp>
9 
10 namespace std {
11  using boost::shared_ptr;
12  using boost::weak_ptr;
13  using boost::make_shared;
14 
15  using boost::function;
16 }
17 
18 #else
19 
20 #include <memory>
21 #include <functional>
22 
23 #endif