#ifndef __SELLA_NMS_WRAPPER_MAP__
#define __SELLA_NMS_WRAPPER_MAP__

#include "defaults.h"

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

#endif
