| 8856 | enum ForWhat { ForTextNodes, ForAttributes }; |
| 8857 | |
| 8858 | XmlEncode( std::string const& str, ForWhat forWhat = ForTextNodes ) |
| 8859 | : m_str( str ), |
| 8860 | m_forWhat( forWhat ) |
| 8861 | {} |
| 8862 | |
| 8863 | void encodeTo( std::ostream& os ) const { |
| 8864 |
nothing calls this directly
no outgoing calls
no test coverage detected