diff options
author | gingold | 2005-10-26 04:01:32 +0000 |
---|---|---|
committer | gingold | 2005-10-26 04:01:32 +0000 |
commit | 89024703a19d25c51f9c10d00a7f6cad15e6c952 (patch) | |
tree | 2c086ab30f8288c10d5f24ad0dca3ac463620d28 /ortho/debug/ortho_ident_simple.ads | |
parent | 3837df869927b515563a33e6732d1da35c262c68 (diff) | |
download | ghdl-89024703a19d25c51f9c10d00a7f6cad15e6c952.tar.gz ghdl-89024703a19d25c51f9c10d00a7f6cad15e6c952.tar.bz2 ghdl-89024703a19d25c51f9c10d00a7f6cad15e6c952.zip |
ortho/debug and ortho/oread added
Diffstat (limited to 'ortho/debug/ortho_ident_simple.ads')
-rw-r--r-- | ortho/debug/ortho_ident_simple.ads | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/ortho/debug/ortho_ident_simple.ads b/ortho/debug/ortho_ident_simple.ads new file mode 100644 index 0000000..63bd769 --- /dev/null +++ b/ortho/debug/ortho_ident_simple.ads @@ -0,0 +1,13 @@ +package Ortho_Ident_Simple is + type O_Ident is private; + O_Ident_Nul : constant O_Ident; + + function Get_Identifier (Str : String) return O_Ident; + function Get_String (Id : O_Ident) return String; + function Is_Equal (L, R : O_Ident) return Boolean renames "="; + function Is_Equal (Id : O_Ident; Str : String) return Boolean; + function Is_Nul (Id : O_Ident) return Boolean; +private + type O_Ident is access String; + O_Ident_Nul : constant O_Ident := null; +end Ortho_Ident_Simple; |