]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/input-staff.hh
release: 0.0.61
[lilypond.git] / lily / include / input-staff.hh
1 /*
2   input-staff.hh -- declare Input_staff
3
4   (c) 1996,97 Han-Wen Nienhuys
5 */
6
7 #ifndef INPUTSTAFF_HH
8 #define INPUTSTAFF_HH
9
10 #include "string.hh"
11 #include "plist.hh"
12 #include "varray.hh"
13 #include "proto.hh"
14 #include "input.hh"
15
16 class Input_staff:public Input {
17 public:
18     
19     IPointer_list<Input_music*> music_;
20     Input_register * ireg_p_;
21     
22     /* *************** */
23     ~Input_staff();
24     void add(Input_music*m);
25     Input_staff(Input_staff const&);
26     Input_staff();
27     Staff* parse(Score*);
28     void print() const;
29 };
30
31
32 #endif // INPUTSTAFF_HH
33