-- $Date: 2004/02/23 08:40:10 $
-- $Revision: 1.2 $
-- $Author: jcrocholl $

with XML_Readers; use XML_Readers;
with XML_Writers; use XML_Writers;

-- Reading and writing Scalar Vector Graphics.
package Outlines.SVG is

   -- Read an outline from an XML reader.
   function Read
     (XML : access XML_Reader-- Use this reader.
     return Outline_Access;    -- The newly created outline.

   -- Write an outline to an XML writer.
   procedure Write
     (XML       : access XML_Writer-- Use this writer.
      This      : access Outline;    -- Write this outline.
      Tolerance : in Real);          -- Tolerance level.

end Outlines.SVG;