* \brief Returns the text content of a TEXT node. * * \return The text string for TEXT nodes. Empty string for ELEMENT nodes. */
| 54 | * \return The text string for TEXT nodes. Empty string for ELEMENT nodes. |
| 55 | */ |
| 56 | const std::string NODE::get_text_content() const |
| 57 | { |
| 58 | return m_text; |
| 59 | } |
| 60 | |
| 61 | /** |
| 62 | * \brief Returns the type of this node. |
no outgoing calls