]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/audio-column.hh
release: 0.1.61
[lilypond.git] / lily / include / audio-column.hh
1 /*
2   audio-column.hh -- declare Audio_column
3
4   (c)  1997--1998 Jan Nieuwenhuizen <jan@digicash.com>
5  */
6
7 #ifndef AUDIO_COLUMN_HH
8 #define AUDIO_COLUMN_HH
9
10 #include "proto.hh"
11 #include "plist.hh"
12 #include "lily-proto.hh"
13 #include "moment.hh"
14
15
16 /**
17     generic audio grouped vertically.
18  */
19
20 class Audio_column { 
21 public:
22     Audio_column (Moment at_mom);
23
24     void add (Audio_item* i_l);
25     Moment at_mom() const;
26     void print() const;
27
28     Link_list<Audio_item *> audio_item_l_list_;
29     Performance * performance_l_;
30
31 private:
32     Audio_column (Audio_column const&);
33
34     Moment at_mom_;
35 };
36
37
38 #endif // AUDIO_COLUMN_HH