* @brief Sets in the Query object that the query will return only existing nodes, * i.e., nodes that have been created, in other words their Create() method has been called. * * @param [in] bExistingNode TRUE to return only existing nodes, FALSE otherwise. * * Remarks * * Note that there are many ways to create nodes, not just by their @ref create_method
| 2105 | * "Create() method". |
| 2106 | */ |
| 2107 | inline XnStatus SetExistingNodeOnly(XnBool bExistingNode) |
| 2108 | { |
| 2109 | return xnNodeQuerySetExistingNodeOnly(m_pQuery, bExistingNode); |
| 2110 | } |
| 2111 | |
| 2112 | /** |
| 2113 | * @brief Sets in the Query object that a specified node must be a dependant of the named node type. |
nothing calls this directly
no test coverage detected