1--  Copyright 1994 Grady Booch
2--  Copyright 1998-2014 Simon Wright <simon@pushface.org>
3
4--  This package is free software; you can redistribute it and/or
5--  modify it under terms of the GNU General Public License as
6--  published by the Free Software Foundation; either version 2, or
7--  (at your option) any later version. This package is distributed in
8--  the hope that it will be useful, but WITHOUT ANY WARRANTY; without
9--  even the implied warranty of MERCHANTABILITY or FITNESS FOR A
10--  PARTICULAR PURPOSE. See the GNU General Public License for more
11--  details. You should have received a copy of the GNU General Public
12--  License distributed with this package; see file COPYING.  If not,
13--  write to the Free Software Foundation, 59 Temple Place - Suite
14--  330, Boston, MA 02111-1307, USA.
15
16with BC.Containers;
17with BC.Containers.Queues;
18with BC.Containers.Queues.Ordered;
19with BC.Containers.Queues.Ordered.Bounded;
20with BC.Containers.Queues.Ordered.Dynamic;
21with BC.Containers.Queues.Ordered.Unbounded;
22with BC.Containers.Queues.Ordered.Unmanaged;
23with BC.Support.Standard_Storage;
24with Global_Heap;
25
26package Ordered_Queue_Test_Support is
27
28   package Containers is new BC.Containers (Item => Character);
29
30   package Base_Queues is new Containers.Queues;
31
32   package Queues is new Base_Queues.Ordered;
33
34   package QB is new Queues.Bounded
35     (Maximum_Size => 100);
36
37   package QD is new Queues.Dynamic
38     (Storage => Global_Heap.Storage);
39
40   package QU is new Queues.Unbounded
41     (Storage => BC.Support.Standard_Storage.Pool);
42
43   package QUM is new Queues.Unmanaged;
44
45end Ordered_Queue_Test_Support;
46