blob: b447102de6ab4b6abc2172469dd5bebc699a7f33 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/*
rhythmstaf.hh -- part of LilyPond
(c) 1996 Han-Wen Nienhuys
*/
#ifndef MELODICSTAFF_HH
#define MELODICSTAFF_HH
#include "simplestaff.hh"
/// five line staff, no multiple voices
struct Melodic_staff : public Simple_staff
{
/****************/
virtual void set_output(PScore *);
virtual Melodic_staff*clone()const;
virtual Stem * get_stem(Stem_req *rq);
virtual Notehead * get_notehead(Note_req *rq);
};
#endif // MELODICSTAFF_HH
|