1255376Sdes// Backward-compat support -*- C++ -*-
2255376Sdes
3271947Sdes// Copyright (C) 2001 Free Software Foundation, Inc.
491100Sdes//
591100Sdes// This file is part of the GNU ISO C++ Library.  This library is free
691100Sdes// software; you can redistribute it and/or modify it under the
791100Sdes// terms of the GNU General Public License as published by the
891100Sdes// Free Software Foundation; either version 2, or (at your option)
991100Sdes// any later version.
1091100Sdes
1191100Sdes// This library is distributed in the hope that it will be useful,
12108794Sdes// but WITHOUT ANY WARRANTY; without even the implied warranty of
1391100Sdes// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1491100Sdes// GNU General Public License for more details.
15117610Sdes
1691100Sdes// You should have received a copy of the GNU General Public License along
1791100Sdes// with this library; see the file COPYING.  If not, write to the Free
1891100Sdes// Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
19236109Sdes// USA.
2091100Sdes
2191100Sdes// As a special exception, you may use this file as part of a free software
2291100Sdes// library without restriction.  Specifically, if other files instantiate
2391100Sdes// templates or use macros or inline functions from this file, or you compile
2491100Sdes// this file and link it with other files to produce an executable, this
2591100Sdes// file does not by itself cause the resulting executable to be covered by
26236109Sdes// the GNU General Public License.  This exception does not however
2791100Sdes// invalidate any other reasons why the executable file might be covered by
2891100Sdes// the GNU General Public License.
2991100Sdes
3091100Sdes/*
3191100Sdes *
3291100Sdes * Copyright (c) 1994
3391100Sdes * Hewlett-Packard Company
3491100Sdes *
3591100Sdes * Permission to use, copy, modify, distribute and sell this software
3691100Sdes * and its documentation for any purpose is hereby granted without fee,
3791100Sdes * provided that the above copyright notice appear in all copies and
3891100Sdes * that both that copyright notice and this permission notice appear
3991100Sdes * in supporting documentation.  Hewlett-Packard Company makes no
4091100Sdes * representations about the suitability of this software for any
4191100Sdes * purpose.  It is provided "as is" without express or implied warranty.
4291100Sdes *
4391100Sdes *
4491100Sdes * Copyright (c) 1996,1997
4591100Sdes * Silicon Graphics Computer Systems, Inc.
4691100Sdes *
4791100Sdes * Permission to use, copy, modify, distribute and sell this software
4891100Sdes * and its documentation for any purpose is hereby granted without fee,
4991100Sdes * provided that the above copyright notice appear in all copies and
5091100Sdes * that both that copyright notice and this permission notice appear
5191100Sdes * in supporting documentation.  Silicon Graphics makes no
5291100Sdes * representations about the suitability of this software for any
5391100Sdes * purpose.  It is provided "as is" without express or implied warranty.
5491100Sdes */
5591100Sdes
5691100Sdes#ifndef _BACKWARD_PAIR_H
5791100Sdes#define _BACKWARD_PAIR_H 1
5891100Sdes
5991100Sdes#include "backward_warning.h"
6091100Sdes#include <bits/c++config.h>
6191100Sdes#include <bits/stl_pair.h>
6291100Sdes
63236109Sdesusing std::pair;
64236109Sdesusing std::make_pair;
65236109Sdes
66117610Sdes#endif /* _BACKWARD_PAIR_H */
67236109Sdes
68147466Sdes// Local Variables:
69117610Sdes// mode:C++
7091100Sdes// End:
7191100Sdes