hello everyone, I have no experience in serialization. I have a problem like:
This is my
struct plane
{
int id;
int size_az;
int size_dal;
int amplityda;
double speed;
QList <int> k_x, k_y;
QList <int> k_az, k_dal;
};
and
QList <plane> all_plane;
I need to serializ and deserializ all_plane, use the file.
Please help me.
I need an example step by step.
↧