| 439 | } |
| 440 | |
| 441 | XnStatus XN_CALLBACK_TYPE PlayerImpl::OnNodeIntPropChanged(void* pCookie, const XnChar* strNodeName, const XnChar* strPropName, XnUInt64 nValue) |
| 442 | { |
| 443 | XN_VALIDATE_INPUT_PTR(pCookie); |
| 444 | PlayerImpl* pThis = (PlayerImpl*)pCookie; |
| 445 | return pThis->SetNodeIntProp(strNodeName, strPropName, nValue); |
| 446 | } |
| 447 | |
| 448 | XnStatus XN_CALLBACK_TYPE PlayerImpl::OnNodeRealPropChanged(void* pCookie, const XnChar* strNodeName, const XnChar* strPropName, XnDouble dValue) |
| 449 | { |
no test coverage detected