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_HEAP_H
00027 #define _STLP_HEAP_H
00028
00029 # ifndef _STLP_OUTERMOST_HEADER_ID
00030 # define _STLP_OUTERMOST_HEADER_ID 0x12
00031 # include <stl/_prolog.h>
00032 # endif
00033
00034 #include <stl/_heap.h>
00035
00036 #ifdef _STLP_USE_NAMESPACES
00037
00038 # ifdef _STLP_BROKEN_USING_DIRECTIVE
00039 using namespace std;
00040 # else
00041 using STLPORT::push_heap;
00042 using STLPORT::pop_heap;
00043 using STLPORT::make_heap;
00044 using STLPORT::sort_heap;
00045 # endif
00046
00047 #endif
00048
00049 # if (_STLP_OUTERMOST_HEADER_ID == 0x12)
00050 # include <stl/_epilog.h>
00051 # undef _STLP_OUTERMOST_HEADER_ID
00052 # endif
00053
00054 #endif
00055
00056
00057
00058