]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.10
authorfred <fred>
Fri, 15 Nov 1996 22:18:22 +0000 (22:18 +0000)
committerfred <fred>
Fri, 15 Nov 1996 22:18:22 +0000 (22:18 +0000)
hdr/pstaff.hh
hdr/scoreline.hh
hdr/voice.hh

index bf33c6b4374955b5f32cefec2b76ff0e80321b4d..d3057af5e9ed7c3259d56552563f90d055d3ba1b 100644 (file)
@@ -10,11 +10,12 @@ struct PStaff {
     Parametric_symbol *stafsym;
     PScore * pscore_;
     
-    virtual Symbol get_stafsym(Real width)const=0; // maybe overkill
-
-    List<const Spanner*> spans;
-    List<Item*> its;
+    
+    PointerList<const Spanner*> spans;
+    PointerList<Item*> its;
 
+    /****************/
+    virtual Symbol get_stafsym(Real width)const=0; // maybe overkill
     void add(Item*i);
     PStaff(PScore*);
     virtual ~PStaff() {}
index 3da47d30dc62b2224422d9b7c9b62202895f8309..a8ae77a222f9315a6649787252b2db7588019625 100644 (file)
 /// the columns of a score that form one line.
 struct
 Line_of_score {
-    List<const PCol *> cols;
+    PointerList<const PCol *> cols;
 
     // need to store height of each staff.
-    PointerList<Line_of_staff*> staffs;
+    IPointerList<Line_of_staff*> staffs;
     const PScore * score;      // needed to generate staffs
 
     /****************/
index 7180ece99ec6af9fd137fa51a291705ba7e11a2c..4e304bb0d90f72dd7e68c03dd9f17502d8491415 100644 (file)
@@ -7,7 +7,7 @@
 
 /// class for  horizontal stuff.
 struct Voice {
-    PointerList<Voice_element *> elts;
+    IPointerList<Voice_element *> elts;
     Real start;
 
     /****************/
@@ -34,10 +34,10 @@ struct Voice_element {
     Real duration;
     const Voicegroup *group;
     const Voice *voice;
-    PointerList<Request*> reqs;
+    IPointerList<Request*> reqs;
 
-    List<const Item *> granted_items;
-    List<const Spanner *> granted_spanners;
+   PointerList<const Item *> granted_items;
+    PointerList<const Spanner *> granted_spanners;
 
     /****************/