]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.10
authorfred <fred>
Fri, 15 Nov 1996 22:04:38 +0000 (22:04 +0000)
committerfred <fred>
Fri, 15 Nov 1996 22:04:38 +0000 (22:04 +0000)
hdr/molecule.hh
hdr/pscore.hh
hdr/score.hh
hdr/staff.hh
hdr/staffline.hh

index 0c69f74040de1632861c417011340b87ea8ce8f5..35060bd92adf8d3724b3a3573330efca2c4804b3 100644 (file)
@@ -25,7 +25,7 @@ struct Atom {
 
 /// a group of #Atom#s
 struct Molecule {
-    PointerList<Atom*> ats;
+    IPointerList<Atom*> ats;
 
     Molecule() { }
     Molecule(Atom a) { add(a) ; }
index 70e783c889c561b700f49873c49b0b8339cb535f..c434f5b700636ec098dbbffe67fe9c0800c01b64 100644 (file)
@@ -13,22 +13,22 @@ struct PScore {
     Paperdef *paper_;          // indirection.
     
     /// the columns, ordered left to right
-    PointerList<PCol *> cols;
+    IPointerList<PCol *> cols;
 
     /// the idealspacings, no particular order
-    PointerList<Idealspacing*> suz;
+    IPointerList<Idealspacing*> suz;
 
     /// the staffs ordered top to bottom
-    PointerList<PStaff*> staffs;
+    IPointerList<PStaff*> staffs;
 
     /// all symbols in score. No particular order.
-    PointerList<Item*> its;
+    IPointerList<Item*> its;
 
     /// if broken, the different lines
-    PointerList<Line_of_score*> lines;
+    IPointerList<Line_of_score*> lines;
 
     /// crescs etc; no particular order
-    PointerList<Spanner *> spanners;
+    IPointerList<Spanner *> spanners;
 
     /****************************************************************/
 
index 176d7fa47a0f7e55f9217eb2666f8c9346e6bf10..ea1ef93c237f35430dbffdc9deb01f9ac11c159f 100644 (file)
@@ -9,11 +9,11 @@
 struct Score {
     /// paper_, staffs_ and commands_ form the problem definition.
     Paperdef *paper_;
-    PointerList<Staff *> staffs_;
+    IPointerList<Staff*> staffs_;
     Score_commands *commands_;
     
     /// "runtime" fields for setting up spacing    
-    PointerList<Score_column*> cols_;
+    IPointerList<Score_column*> cols_;
     PScore *pscore_;
 
     /****************************************************************/
index ee95864fa980ef1965a43c452af56d8bcedf37bb..a2ac99ed034b92ca357b100b47bb9eafa2bd5dff 100644 (file)
@@ -9,13 +9,13 @@
 /// base class for a collection of voices.
 struct Staff {
     /// synchronous horizontal stuff
-    PointerList<Voice*> voices;
+    IPointerList<Voice*> voices;
 
     /// commands in chronological order
-    PointerList<Command *> commands;
+    IPointerList<Command *> commands;
 
     /// runtime field
-    PointerList<Staff_column*> cols;
+    IPointerList<Staff_column*> cols;
 
     /// indirections to the Score and PScore
     Score *score_;
index a04078923ccea4c89381a80686e858011c76073d..be5a7de42bf9c87a2ee11bdae28740d3400ada38 100644 (file)
@@ -15,7 +15,7 @@
 
 /// one broken line of staff.
 struct Line_of_staff {
-    PointerList<Spanner *> brokenspans;    
+    IPointerList<Spanner *> brokenspans;    
     Line_of_score const * scor;
     const PStaff *pstaff_;