#ifndef __SELLA_NMS_WRAPPER_STACK__
#define __SELLA_NMS_WRAPPER_STACK__

#include "defs.h"

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

#endif
