-- $Date: 2004/03/08 10:50:56 $
-- $Revision: 1.3 $
-- $Author: jcrocholl $
-- $Hash: cbc47da3b837446e4b1bc5a2898df5b4 $

-- This file was automatically created with ado.php.
-- Manual changes will be lost when it is updated.

package body Printers is

   -- Accessor to read the filename of a printer.
   function Get_Filename
     (This : access Printer-- The printer to read from.
     return String is        -- The filename of that printer.
   begin
      return To_String(This.Filename);
   end Get_Filename;

   procedure Set_Bounds
     (This         : access Printer-- The printer object instance.
      Bounds       : in Rectangle;   -- The new bounding box.
      Staff_Height : in Real) is     -- Output zoom factor.
   begin
      This.Bounds := Bounds;
   end Set_Bounds;

end Printers;