- #ifndef USERIOMANAGER_HPP
- #define USERIOMANAGER_HPP
- #include "iomanager.hpp"
- class UserIoManager : public IoManager {
- public:
- // UserIoManager(char *ipstring) : IoManager(ipstring) {};
- using IoManager::IoManager;
- // enters loop to handle user based interaction (from the terminal)
- void run();
- };
- #endif
|