main
1using System;
2
3namespace jive
4{
5 public interface CommandProcessor : Command
6 {
7 void add(Action command);
8 void add(Command command_to_process);
9 void stop();
10 }
11}