Quote Originally Posted by anda_skoa View Post
You can also just use the bit maipulation operators, such as & and |

Cheers,
_
thanks, can you give an example how i can access to bits of an unsigned char variables by QBitArray class? is this code true?
Qt Code:
  1. unsigned char un;
  2. QBitArray bits(8);
  3. bits = (QBitArray) un;
To copy to clipboard, switch view to plain text mode 

thanks fore more help