From: fred Date: Sat, 21 Dec 1996 10:35:38 +0000 (+0000) Subject: lilypond-0.0.19 X-Git-Tag: release/1.5.59~6527 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=1871e6563b603be21410a5a921943fe738694ad5;p=lilypond.git lilypond-0.0.19 --- diff --git a/hdr/staffcommands.hh b/hdr/staffcommands.hh index 7573595a37..2fb564eb62 100644 --- a/hdr/staffcommands.hh +++ b/hdr/staffcommands.hh @@ -8,16 +8,17 @@ #include "command.hh" #include "vray.hh" #include "plist.hh" +#include "moment.hh" struct Staff_commands_at : public IPointerList { - Real when; - + Moment moment_; + /****************/ bool is_breakable(); - - Staff_commands_at(Real); + Real when(); + Staff_commands_at(Moment); void set_breakable(); void add_command_to_break(Command pre, Command mid,Command post); void print() const; @@ -25,14 +26,13 @@ struct Staff_commands_at : public IPointerList { void insert_between(Command victim, PCursor firstc, PCursor last); void add(Command c); - }; /// the list of commands in Score struct Staff_commands : public IPointerList { Staff_commands_at*find(Real); - void add(Command,Real); + void add(Staff_commands_at*); void clean(Real last); void OK() const; void print() const;