MCPcopy Create free account
hub / github.com/OpenNI/OpenNI / SetRawNodeStringProp

Method SetRawNodeStringProp

Source/OpenNI/XnRecorderImpl.cpp:230–240  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

228}
229
230XnStatus RecorderImpl::SetRawNodeStringProp(const XnChar* strNodeName, const XnChar* strPropName, const XnChar* strVal)
231{
232 if (!IsRawNode(strNodeName))
233 {
234 xnLogWarning(XN_MASK_OPEN_NI, "Tried to set property of non-existing node by the name of '%s'", strNodeName);
235 XN_ASSERT(FALSE);
236 return XN_STATUS_NO_MATCH;
237 }
238
239 return Notifications().OnNodeStringPropChanged(ModuleHandle(), strNodeName, strPropName, strVal);
240}
241
242XnStatus RecorderImpl::SetRawNodeGeneralProp(const XnChar* strNodeName, const XnChar* strPropName, XnUInt32 nBufferSize, const void* pBuffer)
243{

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected