* @brief Loads an XML script file into the ScriptNode object. * * @param [in] strFileName Name of file containing an XML script. */
| 8378 | * @param [in] strFileName Name of file containing an XML script. |
| 8379 | */ |
| 8380 | inline XnStatus LoadScriptFromFile(const XnChar* strFileName) |
| 8381 | { |
| 8382 | return xnLoadScriptFromFile(GetHandle(), strFileName); |
| 8383 | } |
| 8384 | |
| 8385 | /** |
| 8386 | * @brief Loads an XML script string into the ScriptNode object. |
no test coverage detected