home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 6
/
FreshFish_September1994.bin
/
bbs
/
gnu
/
gnat-1.80-src.lha
/
GNU
/
src
/
amiga
/
gnat-1.80
/
examples
/
instr-child.ads
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS
UTF-8
Wrap
Text File
|
1994-06-23
|
315 b
|
23 lines
package Instr.Child is
subtype Thousand is Integer range 0 .. 1000;
type Accurate_Clock is new Clock with record
MilliSec : Thousand := 0;
end record;
procedure Display_Value (C : Accurate_Clock);
procedure Increment (C : in out Accurate_Clock; inc : Integer := 1);
end;