From: fred Date: Sat, 5 Oct 1996 13:08:56 +0000 (+0000) Subject: lilypond-0.0.1 X-Git-Tag: release/1.5.59~7164 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=e539f4538f43d0d5f600f5597cf5e85cfbc9db82;p=lilypond.git lilypond-0.0.1 --- diff --git a/command.cc b/command.cc new file mode 100644 index 0000000000..bb86e4fd34 --- /dev/null +++ b/command.cc @@ -0,0 +1,13 @@ +#include "string.hh" +#include "command.hh" + + +Command* +get_bar_command(Real w) +{ + Command*c = new Command; + c->when = w; + c->code = TYPESET; + c->args.add( "|"); + return c; +}