-- $Date: 2004/03/08 11:05:10 $
-- $Revision: 1.2 $
-- $Author: jcrocholl $
-- $Hash: 5bf90591803e4c51a986de776b98bc48 $

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

package body Music.Backups is

   -- Constructor for instances.
   function Create
     (Duration : in Positive-- The initial duration.
     return Backup_Access     -- The newly created backup.
   is
      Result : Backup_Access := new Backup;
   begin
      Result.Duration := Duration;
      return Result;
   end Create;

   -- Accessor to read the duration of a backup.
   function Get_Duration
     (This : access Backup-- The backup to read from.
     return Positive is     -- The duration of that backup.
   begin
      return This.Duration;
   end Get_Duration;

end Music.Backups;