MCPcopy Create free account
hub / github.com/WasmEdge/WasmEdge / XmlEncode

Class XmlEncode

test/expected/catch.hpp:6170–6183  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6168 XmlFormatting operator & (XmlFormatting lhs, XmlFormatting rhs);
6169
6170 class XmlEncode {
6171 public:
6172 enum ForWhat { ForTextNodes, ForAttributes };
6173
6174 XmlEncode( std::string const& str, ForWhat forWhat = ForTextNodes );
6175
6176 void encodeTo( std::ostream& os ) const;
6177
6178 friend std::ostream& operator << ( std::ostream& os, XmlEncode const& xmlEncode );
6179
6180 private:
6181 std::string m_str;
6182 ForWhat m_forWhat;
6183 };
6184
6185 class XmlWriter {
6186 public:

Callers 1

catch.hppFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected