2016-03-16 20:15:24 +00:00
|
|
|
#include "commandexecutor.h"
|
2016-03-18 17:48:16 +00:00
|
|
|
namespace mshconsole {
|
|
|
|
CommandExecutor::CommandExecutor() {}
|
2016-04-02 14:28:03 +00:00
|
|
|
void CommandExecutor::exit(int code){
|
|
|
|
throw CommandExecutor::ExitException(code);
|
2016-03-18 17:48:16 +00:00
|
|
|
}
|
2016-03-16 20:15:24 +00:00
|
|
|
}
|