--***************************************************************************** -- Copyright (C) 2003 James E. Hopper. -- -- This is free software; you can redistribute it and/or -- modify it under the terms of the GNU General Public License -- as published by the Free Software Foundation. -- -- This software is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -- -- You should have received a copy of the GNU General Public License -- along with this software. If not, write to the Free Software -- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111- -- 1307, USA. -- -- See the GPL in the COPYING.GPL file for more details. -- -- AUTHOR: James E. Hopper (hopperj@macconnect.com) -- --***************************************************************************** with ossim_Constants; use ossim_Constants; with IRect; with Ossim.Data.Rectilinear.Image; package Ossim.Connectable.Source.Image is type Object is new Ossim.Connectable.Source.Object with private; function Create(C_Object : Void_Ptr) return Object; function GetTile( Handler : Object'class; Bounding_Rect : IRect.Object; ResLevel : ossim_uint32 := 0) return Ossim.Data.Rectilinear.Image.Object; function getOutputScalarType(handler : Object'class) return ossimScalarType; procedure Free(Handler : Object'class); private type Object is new Ossim.Connectable.Source.Object with record null; end record; end Ossim.Connectable.Source.Image;