queue.h revision 169691
158551Skris// Copyright (C) 2001 Free Software Foundation, Inc.
258551Skris//
3228060Sbapt// This file is part of the GNU ISO C++ Library.  This library is free
4228060Sbapt// software; you can redistribute it and/or modify it under the
5228060Sbapt// terms of the GNU General Public License as published by the
658551Skris// Free Software Foundation; either version 2, or (at your option)
7228060Sbapt// any later version.
858551Skris
9228060Sbapt// This library is distributed in the hope that it will be useful,
10228060Sbapt// but WITHOUT ANY WARRANTY; without even the implied warranty of
11228060Sbapt// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12228060Sbapt// GNU General Public License for more details.
1358551Skris
14228060Sbapt// You should have received a copy of the GNU General Public License along
15228060Sbapt// with this library; see the file COPYING.  If not, write to the Free
16228060Sbapt// Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
17228060Sbapt// USA.
1858551Skris
19228060Sbapt// As a special exception, you may use this file as part of a free software
20228060Sbapt// library without restriction.  Specifically, if other files instantiate
21228060Sbapt// templates or use macros or inline functions from this file, or you compile
22228060Sbapt// this file and link it with other files to produce an executable, this
2358551Skris// file does not by itself cause the resulting executable to be covered by
2458551Skris// the GNU General Public License.  This exception does not however
2558551Skris// invalidate any other reasons why the executable file might be covered by
26// the GNU General Public License.
27
28#ifndef _BACKWARD_QUEUE_H
29#define _BACKWARD_QUEUE_H 1
30
31#include "backward_warning.h"
32#include <queue>
33
34using std::queue;
35using std::priority_queue;
36
37#endif
38