libgpr2_24.0.0_eda3c693/src/lib/gpr2-source_reference-text_value-g_set.ads

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
--
--  Copyright (C) 2019-2023, AdaCore
--
--  SPDX-License-Identifier: Apache-2.0 WITH LLVM-Exception
--

with Ada.Containers.Indefinite_Ordered_Sets;

generic
package GPR2.Source_Reference.Text_Value.G_Set is

   package Set is new Ada.Containers.Indefinite_Ordered_Sets (Object'Class);

   subtype Object is Set.Set;

   subtype Cursor is Set.Cursor;

   Empty_Set : constant Object := Set.Empty_Set;

end GPR2.Source_Reference.Text_Value.G_Set;