From b5aeb48d8825fa96198143b99b1c6f7a954c101d Mon Sep 17 00:00:00 2001 From: fred Date: Fri, 15 Nov 1996 22:18:22 +0000 Subject: [PATCH] lilypond-0.0.10 --- hdr/pstaff.hh | 9 +++++---- hdr/scoreline.hh | 4 ++-- hdr/voice.hh | 8 ++++---- 3 files changed, 11 insertions(+), 10 deletions(-) diff --git a/hdr/pstaff.hh b/hdr/pstaff.hh index bf33c6b437..d3057af5e9 100644 --- a/hdr/pstaff.hh +++ b/hdr/pstaff.hh @@ -10,11 +10,12 @@ struct PStaff { Parametric_symbol *stafsym; PScore * pscore_; - virtual Symbol get_stafsym(Real width)const=0; // maybe overkill - - List spans; - List its; + + PointerList spans; + PointerList its; + /****************/ + virtual Symbol get_stafsym(Real width)const=0; // maybe overkill void add(Item*i); PStaff(PScore*); virtual ~PStaff() {} diff --git a/hdr/scoreline.hh b/hdr/scoreline.hh index 3da47d30dc..a8ae77a222 100644 --- a/hdr/scoreline.hh +++ b/hdr/scoreline.hh @@ -13,10 +13,10 @@ /// the columns of a score that form one line. struct Line_of_score { - List cols; + PointerList cols; // need to store height of each staff. - PointerList staffs; + IPointerList staffs; const PScore * score; // needed to generate staffs /****************/ diff --git a/hdr/voice.hh b/hdr/voice.hh index 7180ece99e..4e304bb0d9 100644 --- a/hdr/voice.hh +++ b/hdr/voice.hh @@ -7,7 +7,7 @@ /// class for horizontal stuff. struct Voice { - PointerList elts; + IPointerList elts; Real start; /****************/ @@ -34,10 +34,10 @@ struct Voice_element { Real duration; const Voicegroup *group; const Voice *voice; - PointerList reqs; + IPointerList reqs; - List granted_items; - List granted_spanners; + PointerList granted_items; + PointerList granted_spanners; /****************/ -- 2.39.5