#ifndef __SELLA_NMS_WRAPPER_STRING__
#define __SELLA_NMS_WRAPPER_STRING__

#include "defaults.h"

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

#endif
