// ---------------------------------------------------------------------- // // contpriq.cc - Do priority_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_PRIORITY_QUEUE_CONT( int, std::STL_DEQUE(int) ) pq; pq.push( 0 ); return pq.top(); } // main()