Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. class MyXmlWriter {
  2. public:
  3. MyXmlWriter();
  4. ~MyXmlWriter();
  5. QString writeToString();
  6. private:
  7. QXmlStreamWriter writer;
  8. }
  9.  
  10. QString MyXmlWriter::writeToString(){
  11. QString result;
  12. writer(&result); // at this became the error: no match for call to '(QXmlStreamWriter) (QString*)'
  13. xmlWriter.setAutoFormatting(true);
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement