hashtable.h revision 132720
114239Sbde// Backward-compat support -*- C++ -*-
266830Sobrien
366830Sobrien// Copyright (C) 2001 Free Software Foundation, Inc.
466830Sobrien//
566830Sobrien// This file is part of the GNU ISO C++ Library.  This library is free
666830Sobrien// software; you can redistribute it and/or modify it under the
766830Sobrien// terms of the GNU General Public License as published by the
866830Sobrien// Free Software Foundation; either version 2, or (at your option)
966830Sobrien// any later version.
1066830Sobrien
1166830Sobrien// This library is distributed in the hope that it will be useful,
1266830Sobrien// but WITHOUT ANY WARRANTY; without even the implied warranty of
1366830Sobrien// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1466830Sobrien// GNU General Public License for more details.
1566830Sobrien
1666830Sobrien// You should have received a copy of the GNU General Public License along
1766830Sobrien// with this library; see the file COPYING.  If not, write to the Free
1866830Sobrien// Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
1966830Sobrien// USA.
2066830Sobrien
2166830Sobrien// As a special exception, you may use this file as part of a free software
2266830Sobrien// library without restriction.  Specifically, if other files instantiate
2366830Sobrien// templates or use macros or inline functions from this file, or you compile
2466830Sobrien// this file and link it with other files to produce an executable, this
2566830Sobrien// file does not by itself cause the resulting executable to be covered by
2666830Sobrien// the GNU General Public License.  This exception does not however
2750472Speter// invalidate any other reasons why the executable file might be covered by
2866830Sobrien// the GNU General Public License.
2914239Sbde
30100280Sgordon/*
31100280Sgordon * Copyright (c) 1996,1997
32136224Smtm * Silicon Graphics Computer Systems, Inc.
33100280Sgordon *
3413798Smpp * Permission to use, copy, modify, distribute and sell this software
351675Sache * and its documentation for any purpose is hereby granted without fee,
36114682Sbde * provided that the above copyright notice appear in all copies and
371675Sache * that both that copyright notice and this permission notice appear
381675Sache * in supporting documentation.  Silicon Graphics makes no
391675Sache * representations about the suitability of this software for any
401675Sache * purpose.  It is provided "as is" without express or implied warranty.
411675Sache *
421675Sache *
431675Sache * Copyright (c) 1994
441675Sache * Hewlett-Packard Company
451675Sache *
461675Sache * Permission to use, copy, modify, distribute and sell this software
4714239Sbde * and its documentation for any purpose is hereby granted without fee,
48137698Sobrien * provided that the above copyright notice appear in all copies and
49114682Sbde * that both that copyright notice and this permission notice appear
5014239Sbde * in supporting documentation.  Hewlett-Packard Company makes no
511675Sache * representations about the suitability of this software for any
521675Sache * purpose.  It is provided "as is" without express or implied warranty.
53137698Sobrien *
54137698Sobrien */
55137698Sobrien
56137698Sobrien/* NOTE: This is an internal header file, included by other STL headers.
57137698Sobrien *   You should not attempt to use it directly.
581675Sache */
591675Sache
601675Sache#ifndef _BACKWARD_HASHTABLE_H
611675Sache#define _BACKWARD_HASHTABLE_H 1
621675Sache
6314239Sbde#include "backward_warning.h"
64137698Sobrien#include <ext/hashtable.h>
6514239Sbde#include "algo.h"
661675Sache#include "alloc.h"
671675Sache#include "vector.h"
681675Sache
69137698Sobrienusing __gnu_cxx::hash;
70137698Sobrienusing __gnu_cxx::hashtable;
711675Sache
72137698Sobrien#endif /* _BACKWARD_HASHTABLE_H */
731675Sache
741675Sache// Local Variables:
75137698Sobrien// mode:C++
76137698Sobrien// End:
771675Sache