X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Finclude%2Fcommand-request.hh;h=11a1e44bdfe135f9f87584fa8e7be86164e8b2e7;hb=6ce61146edb1c36647b514778c29cdc9beedab6a;hp=285d0cbb8501cdadf961eed0f655b21d9a97ef0c;hpb=6a0ea5e307744ad53d8b4a7381f2b27c2cfc9c13;p=lilypond.git diff --git a/lily/include/command-request.hh b/lily/include/command-request.hh index 285d0cbb85..11a1e44bdf 100644 --- a/lily/include/command-request.hh +++ b/lily/include/command-request.hh @@ -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. */