This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #ifndef NIBBLEARRAY_H | |
| #define NIBBLEARRAY_H | |
| #include <qglobal.h> // Used only for asserts | |
| class NibbleArray | |
| { | |
| public: | |
| explicit NibbleArray(int size, int depthBits) { | |
| this->data = new unsigned char[size >> 1]; |
NewerOlder