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_STACK_H
00027 #define _STLP_STACK_H
00028
00029 # ifndef _STLP_OUTERMOST_HEADER_ID
00030 # define _STLP_OUTERMOST_HEADER_ID 0xa027
00031 # include <stl/_prolog.h>
00032 # endif
00033
00034 #ifndef _STLP_VECTOR_H
00035 #include <vector.h>
00036 #endif
00037
00038 #ifndef _STLP_DEQUE_H
00039 #include <deque.h>
00040 #endif
00041
00042 #ifndef _STLP_HEAP_H
00043 #include <heap.h>
00044 #endif
00045
00046 #ifndef _STLP_INTERNAL_STACK_H
00047 #include <stl/_stack.h>
00048 #endif
00049
00050 #ifndef _STLP_INTERNAL_QUEUE_H
00051 #include <stl/_queue.h>
00052 #endif
00053
00054 #ifdef _STLP_USE_NAMESPACES
00055 # ifdef _STLP_BROKEN_USING_DIRECTIVE
00056 using namespace STLPORT;
00057 # else
00058 using _STLP_STD::stack;
00059 using _STLP_STD::queue;
00060 using _STLP_STD::priority_queue;
00061 # endif
00062 #endif
00063
00064 # if (_STLP_OUTERMOST_HEADER_ID == 0xa027)
00065 # include <stl/_epilog.h>
00066 # undef _STLP_OUTERMOST_HEADER_ID
00067 # endif
00068
00069 #endif
00070
00071
00072
00073