From 8a6ab3aa61d441b9210c05c84dc9998acfc38737 Mon Sep 17 00:00:00 2001 From: Alan Conway Date: Mon, 16 Oct 2006 13:50:26 +0000 Subject: Build system reorg, see README and Makefile comments for details. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@464494 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/src/memory.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 cpp/src/memory.h (limited to 'cpp/src/memory.h') diff --git a/cpp/src/memory.h b/cpp/src/memory.h new file mode 100644 index 0000000000..2d65877adb --- /dev/null +++ b/cpp/src/memory.h @@ -0,0 +1,17 @@ +#ifndef __UTIL_MEMORY__ +#define __UTIL_MEMORY__ + +#if __GNUC__ < 4 + #include "boost/shared_ptr.hpp" + namespace std { + namespace tr1 { + using boost::shared_ptr; + using boost::dynamic_pointer_cast; + using boost::static_pointer_cast; + } + } +#else + #include +#endif +#endif + -- cgit v1.2.1