summaryrefslogtreecommitdiff
path: root/lib/ChainedCommand.cs
blob: fb137d7880fa8d50c7c0818100f1828574916ecc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
namespace jive
{
  public class ChainedCommand : Command
  {
    readonly Command left;
    readonly Command right;

    public ChainedCommand(Command left, Command right)
    {
      this.left = left;
      this.right = right;
    }

    public void run()
    {
      left.run();
      right.run();
    }
  }
}