msh-console/msh-console-library/commandexecutor.cpp

7 lines
196 B
C++

#include "commandexecutor.h"
namespace mshconsole {
CommandExecutor::CommandExecutor() {}
void CommandExecutor::exit(int code){
throw CommandExecutor::ExitException(code);
}
}