7 lines
184 B
C++
7 lines
184 B
C++
#include "commandexecutor.h"
|
|
namespace mshconsole {
|
|
CommandExecutor::CommandExecutor() {}
|
|
void CommandExecutor::exit(){
|
|
throw CommandExecutor::ExitException();
|
|
}
|
|
}
|