From: fred Date: Fri, 1 Nov 1996 13:40:40 +0000 (+0000) Subject: lilypond-0.0.6 X-Git-Tag: release/1.5.59~6978 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=480642ddb20eaa782020ed8bff4d51e763d5c28a;p=lilypond.git lilypond-0.0.6 --- diff --git a/line.hh b/line.hh index ec45bd577c..3e698659e9 100644 --- a/line.hh +++ b/line.hh @@ -6,7 +6,7 @@ */ #include "real.hh" -#include "list.hh" +#include "plist.hh" #include "vray.hh" #include "glob.hh" #include "pstaff.hh" diff --git a/linespace.hh b/linespace.hh index e5b23ca7f0..b9d850c602 100644 --- a/linespace.hh +++ b/linespace.hh @@ -2,7 +2,7 @@ #define PROBLEM_HH #include "glob.hh" -#include "list.hh" +#include "plist.hh" #include "vray.hh" #include "pcol.hh" #include "matrix.hh" diff --git a/pcol.hh b/pcol.hh index 203482b10e..f28617190a 100644 --- a/pcol.hh +++ b/pcol.hh @@ -3,7 +3,7 @@ #include "glob.hh" #include "boxes.hh" -#include "list.hh" +#include "plist.hh" #include "item.hh" /// stuff grouped vertically. diff --git a/pstaff.hh b/pstaff.hh index 8d17b9dd19..bf33c6b437 100644 --- a/pstaff.hh +++ b/pstaff.hh @@ -1,22 +1,22 @@ #ifndef PSTAFF_HH #define PSTAFF_HH -#include "list.hh" +#include "plist.hh" #include "item.hh" #include "symbol.hh" /// items grouped vertically. -class PStaff { - -public: +struct PStaff { Parametric_symbol *stafsym; - virtual Symbol get_stafsym(Real width)const=0; // mayybe overkill + PScore * pscore_; + + virtual Symbol get_stafsym(Real width)const=0; // maybe overkill List spans; List its; void add(Item*i); - PStaff(); + PStaff(PScore*); virtual ~PStaff() {} };