| 127 | } |
| 128 | |
| 129 | XnStatus xnXmlReadUserPosition(const TiXmlElement* pOpcode, XnInt* pnIndex, XnBoundingBox3D* pUserPosition) |
| 130 | { |
| 131 | XnStatus nRetVal = XN_STATUS_OK; |
| 132 | |
| 133 | nRetVal = xnXmlReadIntAttribute(pOpcode, "index", pnIndex); |
| 134 | XN_IS_STATUS_OK(nRetVal); |
| 135 | |
| 136 | nRetVal = xnXmlReadBoundingBox3D(pOpcode, pUserPosition); |
| 137 | XN_IS_STATUS_OK(nRetVal); |
| 138 | |
| 139 | return (XN_STATUS_OK); |
| 140 | } |
| 141 | |
| 142 | XnStatus xnConfigureMirror(XnNodeHandle hNode, const TiXmlElement* pOpcode) |
| 143 | { |
no test coverage detected