From e539f4538f43d0d5f600f5597cf5e85cfbc9db82 Mon Sep 17 00:00:00 2001 From: fred Date: Sat, 5 Oct 1996 13:08:56 +0000 Subject: [PATCH] lilypond-0.0.1 --- command.cc | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 command.cc 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; +} -- 2.39.5