summaryrefslogtreecommitdiff
path: root/command.cc
blob: ebf993d239e1a7eeba8a087f93633a25707d9097 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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( "BAR");
    c->args.add( "|");
    return c;
}