]> git.donarmstrong.com Git - lilypond.git/blob - hdr/track-column.hh
1d86755a9f3199b7d061fa1a94650a028e4db24e
[lilypond.git] / hdr / 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         ~Track_column();
14
15         void add_event( Midi_event* midi_event_p );
16         Moment mom();
17
18 //private:
19         IPointerList<Midi_event*> midi_event_p_list_;
20         Moment mom_;
21 };
22
23 #endif // TRACK_COLUMN_HH
24