* @brief Loads an XML script string into the ScriptNode object. * * @param [in] strScript String containing an XML script. */
| 8388 | * @param [in] strScript String containing an XML script. |
| 8389 | */ |
| 8390 | inline XnStatus LoadScriptFromString(const XnChar* strScript) |
| 8391 | { |
| 8392 | return xnLoadScriptFromString(GetHandle(), strScript); |
| 8393 | } |
| 8394 | |
| 8395 | /** |
| 8396 | * @brief Runs the ScriptNode object's XML script to build a production graph. |
no test coverage detected