| 228 | } |
| 229 | |
| 230 | XnStatus 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 | |
| 242 | XnStatus RecorderImpl::SetRawNodeGeneralProp(const XnChar* strNodeName, const XnChar* strPropName, XnUInt32 nBufferSize, const void* pBuffer) |
| 243 | { |
nothing calls this directly
no test coverage detected