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

Method SetRawNodeIntProp

Source/OpenNI/XnRecorderImpl.cpp:206–216  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

204
205
206XnStatus RecorderImpl::SetRawNodeIntProp(const XnChar* strNodeName, const XnChar* strPropName, XnUInt64 nVal)
207{
208 if (!IsRawNode(strNodeName))
209 {
210 xnLogWarning(XN_MASK_OPEN_NI, "Tried to set property of non-existing node by the name of '%s'", strNodeName);
211 XN_ASSERT(FALSE);
212 return XN_STATUS_NO_MATCH;
213 }
214
215 return Notifications().OnNodeIntPropChanged(ModuleHandle(), strNodeName, strPropName, nVal);
216}
217
218XnStatus RecorderImpl::SetRawNodeRealProp(const XnChar* strNodeName, const XnChar* strPropName, XnDouble dVal)
219{

Callers

nothing calls this directly

Calls 1

OnNodeIntPropChangedMethod · 0.45

Tested by

no test coverage detected