| Trolltech Home | Qt-interest Home | Recent Threads | All Threads | Author | Date | |
| All threads index page 6 | |
This is a simple question I hope. How do I write a QString out to a QFile. I cannot find the function for doing this
>This is a simple question I hope. How do I write a QString out to a QFile. I
>cannot find the function for doing this
QString str("string");
QFile f("filename");
QTextOStream out(&f);
out << str;
Something like that.
- Marius