]> ruin.nu Git - germs.git/blob - src/shared_ptr.h
7b602da2797198ea0b66e8ee1ec9140c77f8b062
[germs.git] / src / shared_ptr.h
1 #if HAVE_TR1
2 #include <tr1/memory>
3 using std::tr1::shared_ptr;
4 #else
5 #include <boost/shared_ptr.hpp>
6 using boost::shared_ptr;
7 #endif