]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.6
authorfred <fred>
Thu, 31 Oct 1996 21:04:58 +0000 (21:04 +0000)
committerfred <fred>
Thu, 31 Oct 1996 21:04:58 +0000 (21:04 +0000)
linestaff.cc
linestaff.hh

index dd9227b155eeaebd9c0e00fbf4452d82c52a2061..7cd081dc497e63b2f29e2645aa01f56f6c32069b 100644 (file)
@@ -2,11 +2,14 @@
 #include "symbol.hh"
 #include "lookupsyms.hh"
 #include "dimen.hh"
+#include "paper.hh"
+#include "pscore.hh"
 
-Linestaff::Linestaff(int l)
+Linestaff::Linestaff(int l, PScore *s)
+    : PStaff(s)
 {
     nolines = l;
-    stafsym = Lookup::linestaff(l); 
+    stafsym = s->paper_->lookup_->linestaff(l); 
 }
 
 Symbol
index 33e9d39f4e0d2409205ebc592fc1a119d4015375..891269dd9d496ba63873a7b88a932884f41df9a0 100644 (file)
@@ -4,7 +4,8 @@ struct Linestaff : PStaff {
     
     int nolines;
 
-    Symbol get_stafsym(Real width)const;
-    Linestaff(int);
+/****************/
     
+    Symbol get_stafsym(Real width)const;
+    Linestaff(int, PScore*);   
 };