1--  Nodes recognizer for ieee.numeric_std and ieee.numeric_bit.
2--  Copyright (C) 2016 Tristan Gingold
3--
4--  This program is free software: you can redistribute it and/or modify
5--  it under the terms of the GNU General Public License as published by
6--  the Free Software Foundation, either version 2 of the License, or
7--  (at your option) any later version.
8--
9--  This program is distributed in the hope that it will be useful,
10--  but WITHOUT ANY WARRANTY; without even the implied warranty of
11--  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12--  GNU General Public License for more details.
13--
14--  You should have received a copy of the GNU General Public License
15--  along with this program.  If not, see <gnu.org/licenses>.
16
17package Vhdl.Ieee.Numeric is
18   Numeric_Std_Pkg : Iir_Package_Declaration := Null_Iir;
19   Numeric_Std_Unsigned_Type : Iir_Array_Type_Definition := Null_Iir;
20   Numeric_Std_Signed_Type : Iir_Array_Type_Definition := Null_Iir;
21
22   --  Extract declarations from PKG (ieee.numeric_std).
23   procedure Extract_Std_Declarations (Pkg : Iir_Package_Declaration);
24end Vhdl.Ieee.Numeric;
25