Hosted by
|
package body Printers is
function Get_Filename
(This : access Printer)
return String is
begin
return To_String(This.Filename);
end Get_Filename;
procedure Set_Bounds
(This : access Printer;
Bounds : in Rectangle;
Staff_Height : in Real) is
begin
This.Bounds := Bounds;
end Set_Bounds;
end Printers;
|