00001 // <functional> -*- C++ -*- 00002 00003 // Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2009 00004 // Free Software Foundation, Inc. 00005 // 00006 // This file is part of the GNU ISO C++ Library. This library is free 00007 // software; you can redistribute it and/or modify it under the 00008 // terms of the GNU General Public License as published by the 00009 // Free Software Foundation; either version 3, or (at your option) 00010 // any later version. 00011 00012 // This library is distributed in the hope that it will be useful, 00013 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00014 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00015 // GNU General Public License for more details. 00016 00017 // Under Section 7 of GPL version 3, you are granted additional 00018 // permissions described in the GCC Runtime Library Exception, version 00019 // 3.1, as published by the Free Software Foundation. 00020 00021 // You should have received a copy of the GNU General Public License and 00022 // a copy of the GCC Runtime Library Exception along with this program; 00023 // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see 00024 // <http://www.gnu.org/licenses/>. 00025 00026 /* 00027 * Copyright (c) 1997 00028 * Silicon Graphics Computer Systems, Inc. 00029 * 00030 * Permission to use, copy, modify, distribute and sell this software 00031 * and its documentation for any purpose is hereby granted without fee, 00032 * provided that the above copyright notice appear in all copies and 00033 * that both that copyright notice and this permission notice appear 00034 * in supporting documentation. Silicon Graphics makes no 00035 * representations about the suitability of this software for any 00036 * purpose. It is provided "as is" without express or implied warranty. 00037 * 00038 */ 00039 00040 /** @file include/functional 00041 * This is a Standard C++ Library header. 00042 */ 00043 00044 #ifndef _GLIBCXX_FUNCTIONAL 00045 #define _GLIBCXX_FUNCTIONAL 1 00046 00047 #pragma GCC system_header 00048 00049 #include <bits/c++config.h> 00050 #include <bits/stl_function.h> 00051 00052 #ifdef __GXX_EXPERIMENTAL_CXX0X__ 00053 # if defined(_GLIBCXX_INCLUDE_AS_TR1) 00054 # error C++0x header cannot be included from TR1 header 00055 # endif 00056 # include <typeinfo> 00057 # include <new> 00058 # include <tuple> 00059 # include <type_traits> 00060 # include <bits/stringfwd.h> 00061 # include <bits/functional_hash.h> 00062 # include <ext/type_traits.h> 00063 # if defined(_GLIBCXX_INCLUDE_AS_CXX0X) 00064 # include <tr1_impl/functional> 00065 # else 00066 # define _GLIBCXX_INCLUDE_AS_CXX0X 00067 # define _GLIBCXX_BEGIN_NAMESPACE_TR1 00068 # define _GLIBCXX_END_NAMESPACE_TR1 00069 # define _GLIBCXX_TR1 00070 # include <tr1_impl/functional> 00071 # undef _GLIBCXX_TR1 00072 # undef _GLIBCXX_END_NAMESPACE_TR1 00073 # undef _GLIBCXX_BEGIN_NAMESPACE_TR1 00074 # undef _GLIBCXX_INCLUDE_AS_CXX0X 00075 # endif 00076 #endif 00077 00078 #endif // _GLIBCXX_FUNCTIONAL