]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.1
authorfred <fred>
Sat, 5 Oct 1996 13:08:56 +0000 (13:08 +0000)
committerfred <fred>
Sat, 5 Oct 1996 13:08:56 +0000 (13:08 +0000)
command.cc [new file with mode: 0644]

diff --git a/command.cc b/command.cc
new file mode 100644 (file)
index 0000000..bb86e4f
--- /dev/null
@@ -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;
+}