]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.1.46
authorfred <fred>
Sun, 24 Mar 2002 20:03:43 +0000 (20:03 +0000)
committerfred <fred>
Sun, 24 Mar 2002 20:03:43 +0000 (20:03 +0000)
lily/include/bar-grav.hh
lily/include/span-bar-grav.hh
lily/span-bar-grav.cc

index 8bf8d1301a11c7074cdff8a957019678e7d3c453..28dae424ff33480e0b1553894a055408e4a8a89f 100644 (file)
@@ -26,6 +26,8 @@ public:
 
      
 protected:
+  virtual void do_creation_processing ();
+  virtual void do_removal_processing ();
   virtual bool do_try_request (Request *req_l);
   virtual void do_process_requests();
   virtual void do_pre_move_processing();
index 87b9911d7d9781f866a3c482cd98cc5b98e2c7fa..59a99f5f8b124dda8b3946024bbcc2e59097fdcc 100644 (file)
@@ -29,7 +29,8 @@ public:
     
   Span_bar_engraver();
 protected:
-    
+  virtual void do_creation_processing ();
+  virtual void do_removal_processing ();
   virtual void acknowledge_element (Score_elem_info);
   virtual void do_pre_move_processing();
   virtual Span_bar* get_span_bar_p() const;
index 8d9cffdff3318e17d9ceff57436882230704a118..727fe56c76771a82717ca582c911aa1378bffe48 100644 (file)
@@ -22,6 +22,17 @@ Span_bar_engraver::get_span_bar_p() const
   return new Span_bar;
 }
 
+
+void
+Span_bar_engraver::do_creation_processing ()
+{
+}
+
+void
+Span_bar_engraver::do_removal_processing ()
+{
+}    
+
 void
 Span_bar_engraver::acknowledge_element (Score_elem_info i)
 {
@@ -57,7 +68,6 @@ Span_bar_engraver::do_pre_move_processing()
       spanbar_p_ =0;
     }
   bar_l_arr_.set_size (0);
-       
 }