* \brief Convenience method to get the first node with a given name (std::string overload). * * \param[in] name The node name to search for. * \return The first matching DataNode, or nullptr if not found. * \sa GetNamedNode(const char*) */
| 224 | * \sa GetNamedNode(const char*) |
| 225 | */ |
| 226 | DataNode *GetNamedNode(const std::string& name) const { return this->GetNamedNode(name.c_str()); } |
| 227 | |
| 228 | /** |
| 229 | * \brief Convenience method to get the first node with a given name that is derived from a source node. |
nothing calls this directly
no test coverage detected