| 264 | } |
| 265 | |
| 266 | XnStatus RecorderImpl::SetRawNodeNewData(const XnChar* strNodeName, XnUInt64 nTimeStamp, XnUInt32 nFrame, const void* pData, XnUInt32 nSize) |
| 267 | { |
| 268 | if (!IsRawNode(strNodeName)) |
| 269 | { |
| 270 | xnLogWarning(XN_MASK_OPEN_NI, "There is no node by the name of '%s'", strNodeName); |
| 271 | XN_ASSERT(FALSE); |
| 272 | return XN_STATUS_NO_MATCH; |
| 273 | } |
| 274 | |
| 275 | return Notifications().OnNodeNewData(ModuleHandle(), strNodeName, nTimeStamp, nFrame, pData, nSize); |
| 276 | } |
| 277 | |
| 278 | XnStatus RecorderImpl::RemoveNodeImpl(ProductionNode &node) |
| 279 | { |
nothing calls this directly
no test coverage detected