]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.19
authorfred <fred>
Sun, 24 Mar 2002 19:26:52 +0000 (19:26 +0000)
committerfred <fred>
Sun, 24 Mar 2002 19:26:52 +0000 (19:26 +0000)
Sources.make
hdr/stcol.hh

index 4545a011b2d723bd0f6a935af0e5b6b1b18ed29d..53977c778b5f0974791a512f9a00d6e47e87d6fb 100644 (file)
@@ -17,11 +17,12 @@ hdr=    qlp.hh linespace.hh qlpsolve.hh\
        clef.hh clefitem.hh slur.hh inputcommands.hh\
        getcommand.hh inputmusic.hh \
        inputscore.hh inputstaff.hh identparent.hh\
-       inputcommand.hh grouping.hh
+       inputcommand.hh grouping.hh moment.hh
 
 mycc=   qlp.cc qlpsolve.cc leastsquares.cc\
        inputcommands.cc inputmusic.cc  \
        inputscore.cc inputstaff.cc\
+       moment.cc\
        break.cc linespace.cc molecule.cc staffline.cc\
        pscore.cc tex.cc item.cc pcol.cc staff.cc \
        rhythmstaff.cc  score.cc note.cc  main.cc misc.cc\
index a620f8795d65c77e007d5b1a43cee4812f9d06fa..823e9e9126a9f34a674bfb7ef67ba4bac5083210 100644 (file)
@@ -18,8 +18,10 @@ struct Staff_column {
     svec<Voice_element *> v_elts;
 
     /// idem
-    svec<Command *> s_commands;
+    Staff_commands_at *s_commands;
 
+    Moment *moment_;
+    
     /****************/
     
     Staff_column(Score_column*s); 
@@ -33,7 +35,7 @@ struct Staff_column {
 
     virtual void process_requests()=0;
 
-    virtual ~Staff_column() { }
+    virtual ~Staff_column();
 };