summaryrefslogtreecommitdiff
path: root/src/bundles-containers.ads
blob: c12aa39b6a0953ef1e729b7889f2614598cb9436 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35


with

    Ada.Containers.Ordered_Maps,
    Ada.Containers.Vectors;


generic
package Bundles.Containers is


    package Bundle_Vectors is new Ada.Containers.Vectors
           (Index_Type   => Positive,
            Element_Type => Bundle);


    package Bundle_Maps is new Ada.Containers.Ordered_Maps
           (Key_Type     => Candidates.CandidateID,
            Element_Type => Bundle_Vectors.Vector,
            "<"          => Candidates."<",
            "="          => Bundle_Vectors."=");


    subtype Bundle_Map is Bundle_Maps.Map;


    procedure Read_Bundles
           (Filename : in     String;
            Result   :    out Bundle_Map);


end Bundles.Containers;