-- $Date: 2004/02/23 08:37:51 $
-- $Revision: 1.4 $
-- $Author: jcrocholl $

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

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

   -- Read a glyph from an XML reader.
   function Read
     (XML : access XML_Reader-- Use this reader.
     return Glyph_Access;      -- The newly created glyph.

   -- Write a glyph to an XML writer.
   procedure Write
     (XML       : access XML_Writer-- Use this writer.
      This      : access Glyph;      -- Write this glyph.
      Tolerance : in Real;           -- Tolerance level.
      Translate : in Vector);        -- Output offset.

end Glyphs.SVG;