* @brief Sets in the Query object the implementation name to search for. * The same vendor might have more than one implementation, for example, * two @ref xn::DepthGenerator "DepthGenerators" "SensorV2" and "EEDepthGenerator". * This is not the same as the instance name. * * @param [in] strName Implementation name. */
| 2016 | * @param [in] strName Implementation name. |
| 2017 | */ |
| 2018 | inline XnStatus SetName(const XnChar* strName) |
| 2019 | { |
| 2020 | return xnNodeQuerySetName(m_pQuery, strName); |
| 2021 | } |
| 2022 | |
| 2023 | /** |
| 2024 | * @brief Sets in the Query object the minimum required version allowed for the @ref node_alternative. |
nothing calls this directly
no test coverage detected