| 78 | } |
| 79 | |
| 80 | CPHCommandHandler::CPHCommandHandler(CCECBusDevice *busDevice, |
| 81 | int32_t iTransmitTimeout /* = CEC_DEFAULT_TRANSMIT_TIMEOUT */, |
| 82 | int32_t iTransmitWait /* = CEC_DEFAULT_TRANSMIT_WAIT */, |
| 83 | int8_t iTransmitRetries /* = CEC_DEFAULT_TRANSMIT_RETRIES */, |
| 84 | int64_t iActiveSourcePending /* = 0 */) : |
| 85 | CCECCommandHandler(busDevice, iTransmitTimeout, iTransmitWait, iTransmitRetries, iActiveSourcePending), |
| 86 | m_iLastKeyCode(CEC_USER_CONTROL_CODE_UNKNOWN) |
| 87 | { |
| 88 | m_imageViewOnCheck = new CImageViewOnCheck(this); |
| 89 | m_vendorId = CEC_VENDOR_PHILIPS; |
| 90 | m_bOPTSendDeckStatusUpdateOnActiveSource = false; |
| 91 | } |
| 92 | |
| 93 | CPHCommandHandler::~CPHCommandHandler(void) |
| 94 | { |
nothing calls this directly
no outgoing calls
no test coverage detected