-- $Date: 2004/03/08 11:05:10 $
-- $Revision: 1.4 $
-- $Author: jcrocholl $
-- $Hash: 9b592a88fb450f09950b082a1c2af956 $

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

package Notations is

   -- Public representation.
   type Notation is tagged limited private;

   -- Pointer to representation data.
   type Notation_Access is access all Notation'Class;

   -- Constructor for instances.
   function Create
     return Notation_Access-- The newly created notation.

private

   -- Private representation.
   type Notation is tagged limited null record;

end Notations;