| 425 | } |
| 426 | |
| 427 | XnStatus XN_CALLBACK_TYPE PlayerImpl::OnNodeAdded(void* pCookie, const XnChar* strNodeName, XnProductionNodeType type, XnCodecID compression) |
| 428 | { |
| 429 | XN_VALIDATE_INPUT_PTR(pCookie); |
| 430 | PlayerImpl* pThis = (PlayerImpl*)pCookie; |
| 431 | return pThis->AddNode(strNodeName, type, compression); |
| 432 | } |
| 433 | |
| 434 | XnStatus XN_CALLBACK_TYPE PlayerImpl::OnNodeRemoved(void* pCookie, const XnChar* strNodeName) |
| 435 | { |
no test coverage detected