-- $Date: 2004/03/01 01:07:44 $
-- $Revision: 1.1 $
-- $Author: jcrocholl $

with Messages; use Messages;

package body Music.Barlines.Output is

   procedure Add
     (To   : access Collector'Class;
      This : access Barline)
   is
   begin
      if Get_Location(This) = Right then
         Set_Barline(To, This);
      else
         Error("unsupported middle barline");
      end if;
   end Add;

end Music.Barlines.Output;