2001-06-27 19:09:53 +02:00
|
|
|
// Backward-compat support -*- C++ -*-
|
|
|
|
|
|
|
|
// Copyright (C) 2001 Free Software Foundation, Inc.
|
|
|
|
//
|
|
|
|
// 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 04:28:44 +02:00
|
|
|
// Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
|
2001-06-27 19:09:53 +02:00
|
|
|
// USA.
|
|
|
|
|
|
|
|
// 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.
|
2001-03-31 22:15:43 +02:00
|
|
|
|
2000-10-05 13:27:02 +02:00
|
|
|
/*
|
2001-03-31 22:15:43 +02:00
|
|
|
* Copyright (c) 1997
|
2000-10-05 13:27:02 +02:00
|
|
|
* Silicon Graphics Computer Systems, Inc.
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, distribute and sell this software
|
|
|
|
* and its documentation for any purpose is hereby granted without fee,
|
|
|
|
* provided that the above copyright notice appear in all copies and
|
|
|
|
* that both that copyright notice and this permission notice appear
|
|
|
|
* in supporting documentation. Silicon Graphics makes no
|
|
|
|
* representations about the suitability of this software for any
|
|
|
|
* purpose. It is provided "as is" without express or implied warranty.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2003-07-05 06:05:45 +02:00
|
|
|
#ifndef _BACKWARD_TREE
|
|
|
|
#define _BACKWARD_TREE 1
|
2000-10-05 13:27:02 +02:00
|
|
|
|
2001-04-06 08:08:17 +02:00
|
|
|
#include "backward_warning.h"
|
2002-01-04 18:02:28 +01:00
|
|
|
#include <ext/rb_tree>
|
2000-10-05 13:27:02 +02:00
|
|
|
|
2002-01-04 18:02:28 +01:00
|
|
|
using __gnu_cxx::rb_tree;
|
2000-10-05 13:27:02 +02:00
|
|
|
|
algo.h, [...]: Remove trailing whitespace.
* include/backward/algo.h, include/backward/algobase.h,
include/backward/alloc.h, include/backward/complex.h,
include/backward/defalloc.h, include/backward/function.h,
include/backward/iterator.h, include/backward/new.h,
include/backward/ostream.h, include/backward/queue.h,
include/backward/rope.h, include/backward/stream.h,
include/backward/streambuf.h, include/backward/strstream,
include/backward/tempbuf.h, include/backward/tree.h,
include/backward/vector.h: Remove trailing whitespace.
From-SVN: r74455
2003-12-09 04:27:10 +01:00
|
|
|
#endif
|
2000-10-05 13:27:02 +02:00
|
|
|
// Local Variables:
|
|
|
|
// mode:C++
|
|
|
|
// End:
|