]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.41
authorfred <fred>
Tue, 11 Mar 1997 20:29:28 +0000 (20:29 +0000)
committerfred <fred>
Tue, 11 Mar 1997 20:29:28 +0000 (20:29 +0000)
mi2mu/include/midi-track.hh

index 22e110b2e530395f26913f4c2cf780d30b9111d7..e917ebe74ffd41de5625b0aed2c1d18a02b09676 100644 (file)
@@ -10,6 +10,7 @@
 class Midi_track {
 public:
        Midi_track( int number_i, String copyright_str, String track_name_str, String instrument_str );
+       ~Midi_track();
 
        void add_event( Moment mom, Midi_event* midi_event_p );
        Moment end_mom();
@@ -18,11 +19,15 @@ public:
        Moment next_begin_mom( Moment now_mom );
        Moment next_end_mom( Moment now_mom );
        void process();
+       void set_tempo( int useconds_i );
+       void set_time( int num_i, int den_i, int clocks_i, int count_32_i );
        Track_column* tcol_l( Moment mom );
 
        String copyright_str_;
        String instrument_str_;
        String name_str_;
+       Midi_tempo* midi_tempo_p_;
+       Midi_time* midi_time_p_;
 
 private:
        void add_begin_at( PointerList<Midi_voice*>& open_voices_r, Moment mom );