| 1107 | } |
| 1108 | |
| 1109 | XN_C_API XnStatus xnNodeInfoGetTreeStringRepresentation(XnNodeInfo* pNodeInfo, XnChar* csResult, XnUInt32 nSize) |
| 1110 | { |
| 1111 | XN_VALIDATE_INPUT_PTR(pNodeInfo); |
| 1112 | XN_VALIDATE_OUTPUT_PTR(csResult); |
| 1113 | |
| 1114 | return xnNodeInfoGetTreeStringRepresentationImpl(pNodeInfo, csResult, nSize, 0); |
| 1115 | } |
| 1116 | |
| 1117 | //--------------------------------------------------------------------------- |
| 1118 | // ProductionNodesList |
no test coverage detected