-- $Date: 2004/02/23 08:43:53 $
-- $Revision: 1.14 $
-- $Author: jcrocholl $

with Real_Numbers; use Real_Numbers;

package Images is

   -- An image of the size specified by Width and Height.
   type Image(Width, Height : Positive) is
      abstract tagged record
         Staff_Height : Real;
         Aspect_Ratio : Real;
      end record;

   -- Access type for Image_Record and all inherited types.
   type Image_Access is access all Image'Class;

end Images;