#ifndef __SELLA_NMS_WRAPPER_MEMORY__
#define __SELLA_NMS_WRAPPER_MEMORY__

#include "defaults.h"

#ifdef HAVE_STLPORT
	#include <memory>
	namespace sella_nms { using stlport::memory; };
#else
	#ifdef __GNUC__
		#if __GNUC__ < 3
			#include <memory>
			namespace sella_nms { using ::memory; };
		#else
			#include <memory>
			#if __GNUC_MINOR__ == 0 // gcc 3.0
				namespace sella_nms { using std::memory; }
			#else // gcc 3.1+
				namespace sella_nms { using std::memory; }
			#endif
		#endif
	#else // non-gcc compiler
		#include <memory>
		namespace sella_nms { using namespace std; }
	#endif
#endif

#endif
