* @brief Sets in the Query object a capability that the @ref node_alternative must support. * * @param [in] strNeededCapability Name of the capability that the @ref node_alternative * must support. * * Remarks * * Note that for checking if a capability is supported, the node must be created * if it's not an already existing node. This operation might take a
| 2065 | * than usual. |
| 2066 | */ |
| 2067 | inline XnStatus AddSupportedCapability(const XnChar* strNeededCapability) |
| 2068 | { |
| 2069 | return xnNodeQueryAddSupportedCapability(m_pQuery, strNeededCapability); |
| 2070 | } |
| 2071 | |
| 2072 | /** |
| 2073 | * @brief Sets in the Query object a MapOutput mode that the @ref node_alternative must support. |
nothing calls this directly
no test coverage detected