Hallo,

i subclassed from QStandardItemModel and want to save the contents of this Model to a File.
I guess I have to implement:

QDataStream &operator<<(QDataStream &out, const myModel &model);
QDataStream &operator>>(QDataStream &in, myModel &model);

Do I have to manually pick the (custom myStandardItem) items and put them in a File, or is there any simpler way to do this?

Thanks in advance
sun