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 * 00015 * Copyright (c) 1996,1997 00016 * Silicon Graphics Computer Systems, Inc. 00017 * 00018 * Permission to use, copy, modify, distribute and sell this software 00019 * and its documentation for any purpose is hereby granted without fee, 00020 * provided that the above copyright notice appear in all copies and 00021 * that both that copyright notice and this permission notice appear 00022 * in supporting documentation. Silicon Graphics makes no 00023 * representations about the suitability of this software for any 00024 * purpose. It is provided "as is" without express or implied warranty. 00025 */ 00026 00027 #ifndef __SGI_STL_PAIR_H 00028 #define __SGI_STL_PAIR_H 00029 00030 #ifndef __STL_CONFIG_H 00031 #include <stl_config.h> 00032 #endif 00033 #ifndef __SGI_STL_INTERNAL_RELOPS 00034 #include <stl_relops.h> 00035 #endif 00036 #ifndef __SGI_STL_INTERNAL_PAIR_H 00037 #include <stl_pair.h> 00038 #endif 00039 00040 #ifdef __STL_USE_NAMESPACES 00041 00042 using __STD::pair; 00043 using __STD::make_pair; 00044 00045 #endif /* __STL_USE_NAMESPACES */ 00046 00047 #endif /* __SGI_STL_PAIR_H */ 00048 00049 // Local Variables: 00050 // mode:C++ 00051 // End: