| 86 | } |
| 87 | |
| 88 | CCECProcessor::CCECProcessor(CLibCEC *libcec) : |
| 89 | m_bInitialised(false), |
| 90 | m_communication(NULL), |
| 91 | m_libcec(libcec), |
| 92 | m_iStandardLineTimeout(3), |
| 93 | m_iRetryLineTimeout(3), |
| 94 | m_iLastTransmission(0), |
| 95 | m_bMonitor(true), |
| 96 | m_addrAllocator(NULL), |
| 97 | m_bStallCommunication(false), |
| 98 | m_connCheck(NULL) |
| 99 | { |
| 100 | m_busDevices = new CCECDeviceMap(this); |
| 101 | } |
| 102 | |
| 103 | CCECProcessor::~CCECProcessor(void) |
| 104 | { |
nothing calls this directly
no outgoing calls
no test coverage detected