hash_map.h revision 97403
143410Snewton// Backward-compat support -*- C++ -*-
243410Snewton
343410Snewton// Copyright (C) 2001 Free Software Foundation, Inc.
443410Snewton//
543410Snewton// This file is part of the GNU ISO C++ Library.  This library is free
643410Snewton// software; you can redistribute it and/or modify it under the
743410Snewton// terms of the GNU General Public License as published by the
843410Snewton// Free Software Foundation; either version 2, or (at your option)
943410Snewton// any later version.
1043410Snewton
1143410Snewton// This library is distributed in the hope that it will be useful,
1243410Snewton// but WITHOUT ANY WARRANTY; without even the implied warranty of
1343410Snewton// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1443410Snewton// GNU General Public License for more details.
1543410Snewton
1643410Snewton// You should have received a copy of the GNU General Public License along
1743410Snewton// with this library; see the file COPYING.  If not, write to the Free
1843410Snewton// Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
1943410Snewton// USA.
2043410Snewton
2143410Snewton// As a special exception, you may use this file as part of a free software
2243410Snewton// library without restriction.  Specifically, if other files instantiate
2343410Snewton// templates or use macros or inline functions from this file, or you compile
2443410Snewton// this file and link it with other files to produce an executable, this
2543410Snewton// file does not by itself cause the resulting executable to be covered by
2643410Snewton// the GNU General Public License.  This exception does not however
2743410Snewton// invalidate any other reasons why the executable file might be covered by
2843410Snewton// the GNU General Public License.
2943410Snewton
3043410Snewton/*
3143410Snewton * Copyright (c) 1996
3249263Snewton * Silicon Graphics Computer Systems, Inc.
3350477Speter *
3443410Snewton * Permission to use, copy, modify, distribute and sell this software
3543410Snewton * and its documentation for any purpose is hereby granted without fee,
3643410Snewton * provided that the above copyright notice appear in all copies and
3743410Snewton * that both that copyright notice and this permission notice appear
3843410Snewton * in supporting documentation.  Silicon Graphics makes no
3943410Snewton * representations about the suitability of this software for any
4043410Snewton * purpose.  It is provided "as is" without express or implied warranty.
4143410Snewton *
4243410Snewton *
4343410Snewton * Copyright (c) 1994
4443410Snewton * Hewlett-Packard Company
4543410Snewton *
4643410Snewton * Permission to use, copy, modify, distribute and sell this software
4743410Snewton * and its documentation for any purpose is hereby granted without fee,
4843410Snewton * provided that the above copyright notice appear in all copies and
4943410Snewton * that both that copyright notice and this permission notice appear
5043410Snewton * in supporting documentation.  Hewlett-Packard Company makes no
5143410Snewton * representations about the suitability of this software for any
5243410Snewton * purpose.  It is provided "as is" without express or implied warranty.
5343410Snewton *
5443410Snewton */
5543410Snewton
5643410Snewton#ifndef _CPP_BACKWARD_HASH_MAP_H
5765314Sobrien#define _CPP_BACKWARD_HASH_MAP_H 1
5865314Sobrien
5965314Sobrien#include "backward_warning.h"
6065314Sobrien#include "algobase.h"
6165314Sobrien#include <ext/hash_map>
6265314Sobrien
6343410Snewtonusing __gnu_cxx::hash;
6492739Salfredusing __gnu_cxx::hashtable;
6592739Salfredusing __gnu_cxx::hash_map;
6643410Snewtonusing __gnu_cxx::hash_multimap;
6743410Snewton
68115550Sphk#endif /* _CPP_BACKWARD_HASH_MAP_H */
6943410Snewton
7043410Snewton// Local Variables:
7143410Snewton// mode:C++
7243410Snewton// End:
7343410Snewton