]> git.donarmstrong.com Git - lilypond.git/blob - mi2mu/include/track-column.hh
patch::: 0.0.68pre.jcn1: Re: patsen?
[lilypond.git] / mi2mu / include / track-column.hh
1 //
2 // track-column.hh -- declare Track_column
3 //
4 // copyright 1997 Jan Nieuwenhuizen <jan@digicash.com>
5
6 #ifndef TRACK_COLUMN_HH
7 #define TRACK_COLUMN_HH
8
9 /// (tcol)
10 class Track_column {
11 public:
12         Track_column( Moment mom );
13
14         void add_event( Midi_event* midi_event_p );
15         Moment mom();
16
17 //private:
18 #ifdef MEVENT_LIST
19         Pointer_list<Midi_event*> midi_event_p_list_;
20 #else
21         Array<Midi_event*> midi_event_p_array_;
22 #endif
23         Moment mom_;
24 };
25
26 #endif // TRACK_COLUMN_HH
27