]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.14
authorfred <fred>
Mon, 2 Dec 1996 21:51:01 +0000 (21:51 +0000)
committerfred <fred>
Mon, 2 Dec 1996 21:51:01 +0000 (21:51 +0000)
hdr/staff.hh
src/rhythmstaff.cc

index 803bf8738820359b04c34c7beeae5586c19383d2..9f1ba1f498e48e7273125848bf7a0fe0836e741b 100644 (file)
@@ -19,13 +19,10 @@ struct Staff {
     Score *score_;
     PScore *pscore_;
 
-    svec<Command*> input_commands_;
-        
     /****************************************************************/
-    void add(svec<Command*> &s);
     void add(PointerList<Voice*> &s);
-    void process_input_commands(svec<Command*> &s, Real l);
-    
+    void process_commands(Real l);
+
     Staff(const Staff&src);
     void add_voice(Voice *v);
     void add_staff_column(Staff_column *sp);
@@ -45,13 +42,11 @@ struct Staff {
     Staff_column * get_col(Real,bool);
 
     Staff();
-    /**
-      Should construct with Score as arg, but this isn't known during parsing.      
-      */
+
     /****************************************************************
       VIRTUALS
     ****************************************************************/
-    virtual Staff*clone()const=0;    
+
     virtual void set_output(PScore * destination)=0;
     virtual void walk()=0;    
     virtual Staff_column * create_col(Score_column * )=0;
index 6c986a62ccc1bf86ba688c53e775279d4d259a6f..d5f26dcd4306ed055931dd3ee177f5709e2c72d4 100644 (file)
@@ -59,10 +59,3 @@ get_new_rhythmstaff()
     return new Rhythmic_staff;
 }
 
-
-
-Rhythmic_staff*
-Rhythmic_staff::clone() const
-{
-    return new Rhythmic_staff(*this);
-}