00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026 #ifndef _STLP_INTERNAL_DEQUE_H
00027 # include <stl/_deque.h>
00028 #endif
00029
00030 # if defined (_STLP_DEBUG)
00031 # define _DEQUE_SUPER_NAME _DBG_deque
00032 # else
00033 # define _DEQUE_SUPER_NAME __deque__
00034 # endif
00035
00036 # define _DEQUE_SUPER _DEQUE_SUPER_NAME<_Tp, _STLP_DEFAULT_ALLOCATOR(_Tp) >
00037
00038 _STLP_BEGIN_NAMESPACE
00039
00040
00041 template <class _Tp>
00042 class deque : public _DEQUE_SUPER {
00043 public:
00044 typedef deque<_Tp> _Self;
00045 typedef _DEQUE_SUPER _Super;
00046 __IMPORT_WITH_REVERSE_ITERATORS(_Super)
00047 __IMPORT_SUPER_COPY_ASSIGNMENT(deque, _Self, _DEQUE_SUPER)
00048 deque() : _DEQUE_SUPER() { }
00049 deque(size_type __n, const _Tp& __value) : _DEQUE_SUPER(__n, __value) { }
00050 explicit deque(size_type __n) : _DEQUE_SUPER(__n) { }
00051 deque(const _Tp* __first, const _Tp* __last) : _DEQUE_SUPER(__first, __last) { }
00052 deque(const_iterator __first, const_iterator __last) : _DEQUE_SUPER(__first, __last) { }
00053 ~deque() { }
00054 };
00055
00056 # if defined (_STLP_BASE_MATCH_BUG)
00057 template <class _Tp>
00058 inline bool
00059 operator==(const deque<_Tp>& __x, const deque<_Tp>& __y) {
00060 return __x.size() == __y.size() && equal(__x.begin(), __x.end(), __y.begin());
00061 }
00062
00063 template <class _Tp>
00064 inline bool
00065 operator<(const deque<_Tp>& __x, const deque<_Tp>& __y) {
00066 return lexicographical_compare(__x.begin(), __x.end(), __y.begin(), __y.end());
00067 }
00068 # endif
00069
00070 # undef _DEQUE_SUPER
00071
00072 _STLP_END_NAMESPACE
00073
00074
00075
00076