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