00001 // Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 00002 // Free Software Foundation, Inc. 00003 // 00004 // This file is part of the GNU ISO C++ Library. This library is free 00005 // software; you can redistribute it and/or modify it under the 00006 // terms of the GNU General Public License as published by the 00007 // Free Software Foundation; either version 2, or (at your option) 00008 // any later version. 00009 00010 // This library is distributed in the hope that it will be useful, 00011 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00013 // GNU General Public License for more details. 00014 00015 // You should have received a copy of the GNU General Public License along 00016 // with this library; see the file COPYING. If not, write to the Free 00017 // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 00018 // USA. 00019 00020 // As a special exception, you may use this file as part of a free software 00021 // library without restriction. Specifically, if other files instantiate 00022 // templates or use macros or inline functions from this file, or you compile 00023 // this file and link it with other files to produce an executable, this 00024 // file does not by itself cause the resulting executable to be covered by 00025 // the GNU General Public License. This exception does not however 00026 // invalidate any other reasons why the executable file might be covered by 00027 // the GNU General Public License. 00028 00029 #ifndef _BACKWARD_BACKWARD_WARNING_H 00030 #define _BACKWARD_BACKWARD_WARNING_H 1 00031 00032 #ifdef __DEPRECATED 00033 #warning \ 00034 This file includes at least one deprecated or antiquated header which \ 00035 may be removed without further notice at a future date. Please use a \ 00036 non-deprecated interface with equivalent functionality instead. For a \ 00037 listing of replacement headers and interfaces, consult the file \ 00038 backward_warning.h. To disable this warning use -Wno-deprecated. 00039 00040 /* 00041 A list of valid replacements is as follows: 00042 00043 Use: Instead of: 00044 <sstream>, basic_stringbuf <strstream>, strstreambuf 00045 <sstream>, basic_istringstream <strstream>, istrstream 00046 <sstream>, basic_ostringstream <strstream>, ostrstream 00047 <sstream>, basic_stringstream <strstream>, strstream 00048 <unordered_set>, unordered_set <ext/hash_set>, hash_set 00049 <unordered_set>, unordered_multiset <ext/hash_set>, hash_multiset 00050 <unordered_map>, unordered_map <ext/hash_map>, hash_map 00051 <unordered_map>, unordered_multimap <ext/hash_map>, hash_multimap 00052 <functional>, bind <functional>, binder1st 00053 <functional>, bind <functional>, binder2nd 00054 <functional>, bind <functional>, bind1st 00055 <functional>, bind <functional>, bind2nd 00056 <memory>, unique_ptr <memory>, auto_ptr 00057 */ 00058 00059 #endif 00060 00061 #endif