BitVector Implementation Plan class BitVector { ... private: // data unsigned char * byteArray_; size_t byteArraySize_; // methods size_t ByteNumber (size_t indx) const; unsigned char Mask (size_t indx) const; };
class BitVector { ... private: // data unsigned char * byteArray_; size_t byteArraySize_; // methods size_t ByteNumber (size_t indx) const; unsigned char Mask (size_t indx) const; };