Hosted by
|
package body Collectors.MIDI is
function Create
return MIDI_Collector_Access
is
Result : MIDI_Collector_Access := new MIDI_Collector;
begin
return Result;
end Create;
procedure Add_Stave
(This : access MIDI_Collector) is
begin
null;
end Add_Stave;
procedure Add_Measure
(This : access MIDI_Collector) is
begin
null;
end Add_Measure;
procedure Add_Clef
(This : access MIDI_Collector;
Add : access Clef) is
begin
null;
end Add_Clef;
procedure Add_Key
(This : access MIDI_Collector;
Add : access Key) is
begin
null;
end Add_Key;
procedure Add_Time
(This : access MIDI_Collector;
Add : access Time) is
begin
null;
end Add_Time;
procedure Set_Barline
(This : access MIDI_Collector;
Set : access Barline) is
begin
null;
end Set_Barline;
procedure Add_Chord
(This : access MIDI_Collector) is
begin
null;
end Add_Chord;
procedure Add_Note
(This : access MIDI_Collector;
Add : access Note) is
begin
null;
end Add_Note;
procedure Write
(This : access MIDI_Collector;
Filename : in String) is
begin
null;
end Write;
end Collectors.MIDI;
|