]> git.donarmstrong.com Git - lilypond.git/blob - hdr/rhythmstaff.hh
741be45e787c3e55fe0354e6262616b6925d849e
[lilypond.git] / hdr / rhythmstaff.hh
1 /*
2   rhythmstaf.hh -- part of LilyPond
3
4   (c) 1996,97 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,Moment);
20     virtual Notehead * get_notehead(Note_req *rq, int b);   
21     virtual void set_output(PScore *);
22 };
23
24 #endif // RHYTHMSTAF_HH
25
26