summaryrefslogtreecommitdiff
path: root/hdr/rhythmstaff.hh
diff options
context:
space:
mode:
Diffstat (limited to 'hdr/rhythmstaff.hh')
-rw-r--r--hdr/rhythmstaff.hh27
1 files changed, 27 insertions, 0 deletions
diff --git a/hdr/rhythmstaff.hh b/hdr/rhythmstaff.hh
new file mode 100644
index 0000000000..46c35107d2
--- /dev/null
+++ b/hdr/rhythmstaff.hh
@@ -0,0 +1,27 @@
+/*
+ rhythmstaf.hh -- part of LilyPond
+
+ (c) 1996 Han-Wen Nienhuys
+*/
+
+#ifndef RHYTHMSTAF_HH
+#define RHYTHMSTAF_HH
+
+#include "simplestaff.hh"
+
+/// all notes on one line
+struct Rhythmic_staff : public Simple_staff
+{
+
+ /****************/
+
+ virtual Item *get_TYPESET_item(Command*);
+ virtual Stem *get_stem(Stem_req *rq);
+ virtual Notehead * get_notehead(Note_req *rq);
+ virtual void set_output(PScore *);
+ virtual Rhythmic_staff*clone()const;
+};
+
+#endif // RHYTHMSTAF_HH
+
+