]> git.donarmstrong.com Git - lilypond.git/blob - hdr/rhythmstaff.hh
release: 0.0.9
[lilypond.git] / hdr / rhythmstaff.hh
1 /*
2   rhythmstaf.hh -- part of LilyPond
3
4   (c) 1996 Han-Wen Nienhuys
5 */
6
7 #ifndef RHYTHMSTAF_HH
8 #define RHYTHMSTAF_HH
9
10 #include "simplestaff.hh"
11
12 /// all notes on one line
13 struct Rhythmic_staff : public Simple_staff
14 {
15
16     /****************/
17     
18     virtual Item *get_TYPESET_item(Command*);    
19     virtual Stem *get_stem(Stem_req *rq);
20     virtual Notehead * get_notehead(Note_req *rq);   
21     virtual void set_output(PScore *);
22     virtual Rhythmic_staff*clone()const;
23 };
24
25 #endif // RHYTHMSTAF_HH
26
27