Hosted by
|
with Messages; use Messages;
with Parts.Output; use Parts.Output;
package body Scores.Output is
procedure Add
(To : access Collector'Class;
This : access Score)
is
use Part_Lists;
Parts : Part_List_Access := Get_Parts(This);
begin
Reset(Parts);
while Next(Parts) loop
Add(To, Current(Parts));
end loop;
end Add;
end Scores.Output;
|