Files
PolyORB/Examples/Bank/message.adb
Laurent Pautet 43aeba34b6 Clietn /Server example
Subversion-branch: /importfromcvs/trunk
Subversion-revision: 46106
1997-02-13 13:49:34 +00:00

22 lines
426 B
Ada

with Types; use Types;
with Text_Io; use Text_Io;
with Alarm; use Alarm;
package body Message is
procedure Notify
(Terminal : access Alarm_Terminal;
Donator : in Customer_Type;
Amount : in Integer) is
begin
New_Line;
New_Line;
Put ("=> Receive");
Put (Integer'Image (Amount));
Put (" from ");
Put (String (Donator));
New_Line;
end Notify;
end Message;