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