From 2f9ba3077a424c6a7b91debd8828cadeb574fe4c Mon Sep 17 00:00:00 2001 From: fred Date: Fri, 15 Nov 1996 22:04:38 +0000 Subject: [PATCH] lilypond-0.0.10 --- hdr/molecule.hh | 2 +- hdr/pscore.hh | 12 ++++++------ hdr/score.hh | 4 ++-- hdr/staff.hh | 6 +++--- hdr/staffline.hh | 2 +- 5 files changed, 13 insertions(+), 13 deletions(-) diff --git a/hdr/molecule.hh b/hdr/molecule.hh index 0c69f74040..35060bd92a 100644 --- a/hdr/molecule.hh +++ b/hdr/molecule.hh @@ -25,7 +25,7 @@ struct Atom { /// a group of #Atom#s struct Molecule { - PointerList ats; + IPointerList ats; Molecule() { } Molecule(Atom a) { add(a) ; } diff --git a/hdr/pscore.hh b/hdr/pscore.hh index 70e783c889..c434f5b700 100644 --- a/hdr/pscore.hh +++ b/hdr/pscore.hh @@ -13,22 +13,22 @@ struct PScore { Paperdef *paper_; // indirection. /// the columns, ordered left to right - PointerList cols; + IPointerList cols; /// the idealspacings, no particular order - PointerList suz; + IPointerList suz; /// the staffs ordered top to bottom - PointerList staffs; + IPointerList staffs; /// all symbols in score. No particular order. - PointerList its; + IPointerList its; /// if broken, the different lines - PointerList lines; + IPointerList lines; /// crescs etc; no particular order - PointerList spanners; + IPointerList spanners; /****************************************************************/ diff --git a/hdr/score.hh b/hdr/score.hh index 176d7fa47a..ea1ef93c23 100644 --- a/hdr/score.hh +++ b/hdr/score.hh @@ -9,11 +9,11 @@ struct Score { /// paper_, staffs_ and commands_ form the problem definition. Paperdef *paper_; - PointerList staffs_; + IPointerList staffs_; Score_commands *commands_; /// "runtime" fields for setting up spacing - PointerList cols_; + IPointerList cols_; PScore *pscore_; /****************************************************************/ diff --git a/hdr/staff.hh b/hdr/staff.hh index ee95864fa9..a2ac99ed03 100644 --- a/hdr/staff.hh +++ b/hdr/staff.hh @@ -9,13 +9,13 @@ /// base class for a collection of voices. struct Staff { /// synchronous horizontal stuff - PointerList voices; + IPointerList voices; /// commands in chronological order - PointerList commands; + IPointerList commands; /// runtime field - PointerList cols; + IPointerList cols; /// indirections to the Score and PScore Score *score_; diff --git a/hdr/staffline.hh b/hdr/staffline.hh index a04078923c..be5a7de42b 100644 --- a/hdr/staffline.hh +++ b/hdr/staffline.hh @@ -15,7 +15,7 @@ /// one broken line of staff. struct Line_of_staff { - PointerList brokenspans; + IPointerList brokenspans; Line_of_score const * scor; const PStaff *pstaff_; -- 2.39.5