2004-10-25 19:05:58 +00:00
|
|
|
// class template tuple -*- C++ -*-
|
|
|
|
|
2007-03-13 20:02:59 +00:00
|
|
|
// Copyright (C) 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
|
2004-10-25 19:05:58 +00:00
|
|
|
//
|
|
|
|
// This file is part of the GNU ISO C++ Library. This library is free
|
|
|
|
// software; you can redistribute it and/or modify it under the
|
|
|
|
// terms of the GNU General Public License as published by the
|
|
|
|
// Free Software Foundation; either version 2, or (at your option)
|
|
|
|
// any later version.
|
|
|
|
|
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License along
|
|
|
|
// with this library; see the file COPYING. If not, write to the Free
|
2005-08-17 02:28:44 +00:00
|
|
|
// Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
|
2004-10-25 19:05:58 +00:00
|
|
|
// USA.
|
|
|
|
|
2005-02-22 17:07:07 +00:00
|
|
|
// As a special exception, you may use this file as part of a free software
|
|
|
|
// library without restriction. Specifically, if other files instantiate
|
|
|
|
// templates or use macros or inline functions from this file, or you compile
|
|
|
|
// this file and link it with other files to produce an executable, this
|
|
|
|
// file does not by itself cause the resulting executable to be covered by
|
|
|
|
// the GNU General Public License. This exception does not however
|
|
|
|
// invalidate any other reasons why the executable file might be covered by
|
|
|
|
// the GNU General Public License.
|
|
|
|
|
2006-12-05 23:24:07 +00:00
|
|
|
/** @file tr1/tuple
|
2005-04-01 03:35:59 +00:00
|
|
|
* This is a TR1 C++ Library header.
|
|
|
|
*/
|
locale_facets.h (isspace, [...]): Add doxygen markup.
2004-11-22 Benjamin Kosnik <bkoz@redhat.com>
* include/bits/locale_facets.h (isspace, isprint, isupper,
islower, isalpha, isdigit, ispunct, isxdigit, isalnum, isgraph,
toupper, tolower): Add doxygen markup.
(codecvt_byname, ctype_byname, numpunct_byname, collate_byname,
time_get_byname, time_put_byname, moneypunct_byname,
messages_byname): Same.
* include/std/std_fstream.h: Remove superfluous markup.
* include/std/std_sstream.h: Same.
* include/std/std_streambuf.h: Same.
* include/ext/enc_filebuf.h: Adjust markup.
* include/ext/stdio_filebuf.h: Same.
* include/ext/stdio_sync_filebuf.h: Same.
* include/bits/codecvt.h: Same.
* config/os/gnu-linux/ctype_base.h: Same.
* config/locale/ieee_1003.1-2001/codecvt_specializations.h: Same.
* include/tr1/array: Add markup.
* include/tr1/tuple: Same.
* docs/doxygen/run_doxygen: Print arguments.
* docs/doxygen/user.cfg.in: Tweaks.
From-SVN: r91080
2004-11-23 09:18:41 +00:00
|
|
|
|
2004-11-24 16:04:47 +00:00
|
|
|
// Chris Jefferson <chris@bubblescope.net>
|
2007-03-10 02:04:13 +00:00
|
|
|
// Variadic Templates support by Douglas Gregor <doug.gregor@gmail.com>
|
2004-11-24 16:04:47 +00:00
|
|
|
|
2007-05-31 23:37:56 +00:00
|
|
|
#ifndef _GLIBCXX_TR1_TUPLE
|
|
|
|
#define _GLIBCXX_TR1_TUPLE 1
|
2004-10-25 19:05:58 +00:00
|
|
|
|
2007-03-10 02:04:13 +00:00
|
|
|
#pragma GCC system_header
|
|
|
|
|
2007-05-31 23:37:56 +00:00
|
|
|
#if defined(_GLIBCXX_INCLUDE_AS_CXX0X)
|
|
|
|
# error TR1 header cannot be included from C++0x header
|
|
|
|
#endif
|
2005-04-01 03:35:59 +00:00
|
|
|
|
2007-05-31 23:37:56 +00:00
|
|
|
#include <utility>
|
2006-11-29 20:59:22 +00:00
|
|
|
|
2007-05-31 23:37:56 +00:00
|
|
|
#if defined(_GLIBCXX_INCLUDE_AS_TR1)
|
|
|
|
# include <tr1_impl/tuple>
|
|
|
|
#else
|
|
|
|
# define _GLIBCXX_INCLUDE_AS_TR1
|
|
|
|
# define _GLIBCXX_BEGIN_NAMESPACE_TR1 namespace tr1 {
|
|
|
|
# define _GLIBCXX_END_NAMESPACE_TR1 }
|
|
|
|
# define _GLIBCXX_TR1 tr1::
|
|
|
|
# include <tr1_impl/tuple>
|
|
|
|
# undef _GLIBCXX_TR1
|
|
|
|
# undef _GLIBCXX_END_NAMESPACE_TR1
|
|
|
|
# undef _GLIBCXX_BEGIN_NAMESPACE_TR1
|
|
|
|
# undef _GLIBCXX_INCLUDE_AS_TR1
|
2005-04-01 03:35:59 +00:00
|
|
|
#endif
|
2007-05-31 23:37:56 +00:00
|
|
|
|
|
|
|
#endif // _GLIBCXX_TR1_TUPLE
|