]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.76
authorfred <fred>
Sun, 24 Mar 2002 19:48:39 +0000 (19:48 +0000)
committerfred <fred>
Sun, 24 Mar 2002 19:48:39 +0000 (19:48 +0000)
lily/engraver.cc
lily/include/command-request.hh

index d524de63d5d5b7529b750a7631d450a67e15afa7..54518e6daf01b6e4005e1eed946760abbeca818f 100644 (file)
@@ -15,7 +15,6 @@
 void
 Engraver::post_move_processing()
 {
-        
     if (status < CREATION_INITED) {
        do_creation_processing();
        status = CREATION_INITED;
index 285d0cbb8501cdadf961eed0f655b21d9a97ef0c..11a1e44bdfe135f9f87584fa8e7be86164e8b2e7 100644 (file)
@@ -26,6 +26,7 @@ public:
     virtual Meter_change_req * meterchange() { return 0; }
     virtual Bar_req *bar() { return 0; }
     virtual Cadenza_req *cadenza() { return 0; }
+    virtual Disallow_break_req *disallowbreak() { return 0; }
     virtual Timing_req*timing() {  return 0; }
     virtual Command_script_req*commandscript() { return 0;}
 };
@@ -37,6 +38,11 @@ public:
 };
 
 
+class Disallow_break_req : public Command_req {
+public:
+    REQUESTMETHODS(Disallow_break_req, disallowbreak);
+};
+
 
 /** Baseclass for meter/partial req. It has to be handled by
   Staff_{walker,column} baseclass.  */