| 9612 | enum ForWhat { ForTextNodes, ForAttributes }; |
| 9613 | |
| 9614 | XmlEncode( std::string const& str, ForWhat forWhat = ForTextNodes ) |
| 9615 | : m_str( str ), |
| 9616 | m_forWhat( forWhat ) |
| 9617 | {} |
| 9618 | |
| 9619 | void encodeTo( std::ostream& os ) const { |
| 9620 |
nothing calls this directly
no outgoing calls
no test coverage detected