What is the best way to convert a double array (double*) to a QByteArray ?
I have the size of the array. I thought of converting each double to a QByteArray and then append all the arrays to a big QByteArray.
For the other way, well maybe parse the data to many QByteArrays (one for each double) and convert them to double.
I don't know which QByteArray method to use for an efficient parsing ?
Thanks