stack.h
Go to the documentation of this file.
00001 /* stack.h
00002  */
00003 #ifndef STACK_H
00004 #define STACK_H
00005 
00006 #include "osl/stl/vector.h"
00007 #include <stack>
00008 
00009 namespace osl
00010 {
00011   namespace stl
00012   {
00013     template <class T>
00014     struct stack : public std::stack<T, vector<T> >
00015     {
00016     };
00017   } // namespace stl
00018   using stl::stack;
00019 } // namespace stl
00020 
00021 #endif /* STACK_H */
00022 // ;;; Local Variables:
00023 // ;;; mode:c++
00024 // ;;; c-basic-offset:2
00025 // ;;; End:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines