rope.h revision 169692
1407SN/A// Backward-compat support -*- C++ -*-
2407SN/A
3407SN/A// Copyright (C) 2001 Free Software Foundation, Inc.
4407SN/A//
5407SN/A// This file is part of the GNU ISO C++ Library.  This library is free
6407SN/A// software; you can redistribute it and/or modify it under the
7407SN/A// terms of the GNU General Public License as published by the
8407SN/A// Free Software Foundation; either version 2, or (at your option)
9407SN/A// any later version.
10407SN/A
11407SN/A// This library is distributed in the hope that it will be useful,
12407SN/A// but WITHOUT ANY WARRANTY; without even the implied warranty of
13407SN/A// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14407SN/A// GNU General Public License for more details.
15407SN/A
16407SN/A// You should have received a copy of the GNU General Public License along
17407SN/A// with this library; see the file COPYING.  If not, write to the Free
18407SN/A// Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
19407SN/A// USA.
20407SN/A
21407SN/A// As a special exception, you may use this file as part of a free software
22407SN/A// library without restriction.  Specifically, if other files instantiate
23407SN/A// templates or use macros or inline functions from this file, or you compile
24407SN/A// this file and link it with other files to produce an executable, this
25407SN/A// file does not by itself cause the resulting executable to be covered by
26407SN/A// the GNU General Public License.  This exception does not however
27407SN/A// invalidate any other reasons why the executable file might be covered by
28407SN/A// the GNU General Public License.
29407SN/A
30407SN/A/*
31407SN/A * Copyright (c) 1997
32407SN/A * Silicon Graphics Computer Systems, Inc.
33407SN/A *
34407SN/A * Permission to use, copy, modify, distribute and sell this software
35407SN/A * and its documentation for any purpose is hereby granted without fee,
36407SN/A * provided that the above copyright notice appear in all copies and
37407SN/A * that both that copyright notice and this permission notice appear
38407SN/A * in supporting documentation.  Silicon Graphics makes no
39407SN/A * representations about the suitability of this software for any
40407SN/A * purpose.  It is provided "as is" without express or implied warranty.
41407SN/A */
42407SN/A
43407SN/A#ifndef _BACKWARD_ROPE_H
44407SN/A#define _BACKWARD_ROPE_H 1
45407SN/A
46407SN/A#include "backward_warning.h"
47407SN/A#include "hashtable.h"
48407SN/A#include <ext/rope>
49407SN/A
50407SN/Ausing __gnu_cxx::char_producer;
51407SN/Ausing __gnu_cxx::sequence_buffer;
52407SN/Ausing __gnu_cxx::rope;
53407SN/Ausing __gnu_cxx::crope;
54407SN/Ausing __gnu_cxx::wrope;
55407SN/A
56407SN/A#endif /* _BACKWARD_ROPE_H */
57407SN/A