#ifndef __SELLA_NMS_WRAPPER_SLIST__
#define __SELLA_NMS_WRAPPER_SLIST__

#include "defs.h"

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

#endif
