#include "InputOutput.h" int STDOut::listen(const int mode) { InputOutput::listen(mode); //synchronous char command[1024]; m_run = true; while (m_run && cin.getline(command, 1024)) m_rc->newRequest(command, this); return 0; } int STDOut::shutdown() { //synchronous m_run = false; return 0; }