1 2 3 4 5 6 7 8
namespace common { public interface CommandProcessor : Command { void add(Command command_to_process); void stop(); } }