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.Lists;
18with BC.Containers.Lists.Single;
19with BC.Containers.Lists.Double;
20with Global_Heap;
21
22package List_Test_Support is
23
24   package Containers is new BC.Containers (Item => Character);
25
26   package Lists is new Containers.Lists;
27
28   package LS is new Lists.Single (Storage => Global_Heap.Storage);
29
30   package LD is new Lists.Double (Storage => Global_Heap.Storage);
31
32end List_Test_Support;
33