]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.9
authorfred <fred>
Fri, 1 Nov 1996 13:40:41 +0000 (13:40 +0000)
committerfred <fred>
Fri, 1 Nov 1996 13:40:41 +0000 (13:40 +0000)
hdr/pstaff.hh [new file with mode: 0644]

diff --git a/hdr/pstaff.hh b/hdr/pstaff.hh
new file mode 100644 (file)
index 0000000..bf33c6b
--- /dev/null
@@ -0,0 +1,23 @@
+#ifndef PSTAFF_HH
+#define PSTAFF_HH
+
+#include "plist.hh"
+#include "item.hh"
+#include "symbol.hh"
+
+/// items grouped vertically.
+struct PStaff {
+    Parametric_symbol *stafsym;
+    PScore * pscore_;
+    
+    virtual Symbol get_stafsym(Real width)const=0; // maybe overkill
+
+    List<const Spanner*> spans;
+    List<Item*> its;
+
+    void add(Item*i);
+    PStaff(PScore*);
+    virtual ~PStaff() {}
+};
+
+#endif