| 204 | |
| 205 | |
| 206 | XnStatus 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 | |
| 218 | XnStatus RecorderImpl::SetRawNodeRealProp(const XnChar* strNodeName, const XnChar* strPropName, XnDouble dVal) |
| 219 | { |
nothing calls this directly
no test coverage detected