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.Deques;
18with BC.Containers.Deques.Bounded;
19with BC.Containers.Deques.Dynamic;
20with BC.Containers.Deques.Unbounded;
21with BC.Containers.Deques.Unmanaged;
22with BC.Support.Standard_Storage;
23with Global_Heap;
24
25package Deque_Test_Support is
26
27   package Containers is new BC.Containers (Item => Character);
28
29   package Deques is new Containers.Deques;
30
31   package DB is new Deques.Bounded
32     (Maximum_Size => 100);
33
34   package DD is new Deques.Dynamic
35     (Storage => Global_Heap.Storage);
36
37   package DU is new Deques.Unbounded
38     (Storage => BC.Support.Standard_Storage.Pool);
39
40   package DUM is new Deques.Unmanaged;
41
42end Deque_Test_Support;
43