// ---------------------------------------------------------------------- // // contque.cc - Do queues 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_QUEUE_CONT( int, std::STL_LIST(int) ) q; q.push( 0 ); return q.front(); } // main()