Hosted by
|
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;
|