Hello,
I have a question about convertion QByteArray to int array.
Here is example:
Qt Code:
  1. QByteArray bin = file.readAll();
  2. //"bin" has a {10101010101}
  3. //for ex.: bin[0] returns 1, but it is not integer and I need to convert this to int array
  4. //I want to have result int: n {the same}
To copy to clipboard, switch view to plain text mode