00001 /* 00002 * 00003 * Copyright (c) 1994 00004 * Hewlett-Packard Company 00005 * 00006 * Permission to use, copy, modify, distribute and sell this software 00007 * and its documentation for any purpose is hereby granted without fee, 00008 * provided that the above copyright notice appear in all copies and 00009 * that both that copyright notice and this permission notice appear 00010 * in supporting documentation. Hewlett-Packard Company makes no 00011 * representations about the suitability of this software for any 00012 * purpose. It is provided "as is" without express or implied warranty. 00013 * 00014 * Copyright (c) 1997 00015 * Silicon Graphics Computer Systems, Inc. 00016 * 00017 * Permission to use, copy, modify, distribute and sell this software 00018 * and its documentation for any purpose is hereby granted without fee, 00019 * provided that the above copyright notice appear in all copies and 00020 * that both that copyright notice and this permission notice appear 00021 * in supporting documentation. Silicon Graphics makes no 00022 * representations about the suitability of this software for any 00023 * purpose. It is provided "as is" without express or implied warranty. 00024 */ 00025 00026 #ifndef _CPP_BACKWARD_HEAP_H 00027 #define _CPP_BACKWARD_HEAP_H 1 00028 00029 #include "backward_warning.h" 00030 #include <bits/c++config.h> 00031 #include <bits/stl_heap.h> 00032 00033 using std::push_heap; 00034 using std::pop_heap; 00035 using std::make_heap; 00036 using std::sort_heap; 00037 00038 #endif /* _CPP_BACKWARD_HEAP_H */ 00039 00040 // Local Variables: 00041 // mode:C++ 00042 // End: