Changeset 3121 for code/branches/netp4/src/orxonox/gamestates/GSDedicated.h
- Timestamp:
- Jun 8, 2009, 9:17:40 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/netp4/src/orxonox/gamestates/GSDedicated.h
r3119 r3121 39 39 #include <boost/thread/recursive_mutex.hpp> 40 40 41 struct termios; 42 41 43 namespace orxonox 42 44 { 45 43 46 class _OrxonoxExport GSDedicated : public GameState 44 47 { … … 55 58 void printLine(); 56 59 void processQueue(); 60 void setTerminalMode(); 61 static void resetTerminalMode(); 57 62 58 63 Server* server_; … … 60 65 61 66 boost::thread *inputThread_; 62 //boost::recursive_mutex inputLineMutex_;67 boost::recursive_mutex inputLineMutex_; 63 68 boost::recursive_mutex inputQueueMutex_; 64 69 bool closeThread_; … … 67 72 unsigned int inputIterator_; 68 73 std::queue<std::string> commandQueue_; 69 74 static termios* originalTerminalSettings_; 70 75 }; 71 76 }
Note: See TracChangeset
for help on using the changeset viewer.