X-Git-Url: https://ruin.nu/git/?p=germs.git;a=blobdiff_plain;f=src%2Fshared_ptr.h;fp=src%2Fshared_ptr.h;h=7b602da2797198ea0b66e8ee1ec9140c77f8b062;hp=0000000000000000000000000000000000000000;hb=c997c8f4931cde3ede1b51905c10c4d9c442e630;hpb=40d817fd1c0ec184927450858ca95b722ae8acba diff --git a/src/shared_ptr.h b/src/shared_ptr.h new file mode 100644 index 0000000..7b602da --- /dev/null +++ b/src/shared_ptr.h @@ -0,0 +1,7 @@ +#if HAVE_TR1 +#include +using std::tr1::shared_ptr; +#else +#include +using boost::shared_ptr; +#endif