-- $Date: 2004/02/25 07:05:37 $
-- $Revision: 1.2 $
-- $Author: jcrocholl $

package body Music.Notes.Output is

   procedure Add
     (To   : access Collector'Class;
      This : access Note)
   is
   begin
      if not Get_Chord(This) then
         Add_Chord(To);
      end if;

      Add_Note(To, This);
   end Add;

end Music.Notes.Output;