// ---------------------------------------------------------------------- // // contstk.cc - Do stacks support custom underlying containers? // // History: // 27-Jan-2000 WEB Initial draft // 21-Feb-2000 WEB Correct namespace // 25-Apr-2001 WEB s//"ISOcxx\/ISOcxxSyntax.hh"/ // // ---------------------------------------------------------------------- #include "ISOcxx/ISOcxxSyntax.hh" #include #include int main() { std::STL_STACK_CONT( int, std::STL_VECTOR(int) ) s; s.push( 0 ); return s.top(); } // main()