All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
stack.h
Go to the documentation of this file.
1 /* stack.h
2  */
3 #ifndef STACK_H
4 #define STACK_H
5 
6 #include "osl/stl/vector.h"
7 #include <stack>
8 
9 namespace osl
10 {
11  namespace stl
12  {
13  template <class T>
14  struct stack : public std::stack<T, vector<T> >
15  {
16  };
17  } // namespace stl
18  using stl::stack;
19 } // namespace stl
20 
21 #endif /* STACK_H */
22 // ;;; Local Variables:
23 // ;;; mode:c++
24 // ;;; c-basic-offset:2
25 // ;;; End: