----------------------------------------------------------------------------- Constructor -----------------------------------------------------------------------------
| 51 | // Constructor |
| 52 | //----------------------------------------------------------------------------- |
| 53 | HidController::HidController |
| 54 | ( |
| 55 | ): |
| 56 | m_hHidController( NULL ), |
| 57 | m_thread( NULL ), |
| 58 | m_vendorId( 0x1b5f ), // Wayne Dalton |
| 59 | m_productId( 0x01 ), // ControlThink ThinkStick |
| 60 | m_serialNumber( "" ), |
| 61 | m_hidControllerName( "" ), |
| 62 | m_bOpen( false ) |
| 63 | { |
| 64 | } |
| 65 | |
| 66 | //----------------------------------------------------------------------------- |
| 67 | // <HidController::~HidController> |
nothing calls this directly
no outgoing calls
no test coverage detected