Small style stuff
[zxing.git] / cpp / core / src / zxing / common / BitArray.h
1 #ifndef __BIT_ARRAY_H__
2 #define __BIT_ARRAY_H__
3
4 /*
5  *  BitArray.h
6  *  zxing
7  *
8  *  Copyright 2010 ZXing authors. All rights reserved.
9  *
10  * Licensed under the Apache License, Version 2.0 (the "License");
11  * you may not use this file except in compliance with the License.
12  * You may obtain a copy of the License at
13  *
14  *      http://www.apache.org/licenses/LICENSE-2.0
15  *
16  * Unless required by applicable law or agreed to in writing, software
17  * distributed under the License is distributed on an "AS IS" BASIS,
18  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19  * See the License for the specific language governing permissions and
20  * limitations under the License.
21  */
22
23 #include <zxing/common/Counted.h>
24 #include <zxing/common/IllegalArgumentException.h>
25 #include <vector>
26 #include <iostream>
27
28 namespace zxing {
29
30 class BitArray : public Counted {
31 private:
32   size_t size_;
33   std::vector<unsigned int> bits_;
34   static const unsigned int bitsPerWord_;
35   static const unsigned int logBits_;
36   static const unsigned int bitsMask_;
37   static size_t wordsForBits(size_t bits);
38   explicit BitArray();
39
40 public:
41   BitArray(size_t size);
42   ~BitArray();
43   size_t getSize();
44   bool get(size_t i);
45   void set(size_t i);
46   void setBulk(size_t i, unsigned int newBits);
47   void clear();
48   bool isRange(size_t start, size_t end, bool value);
49   std::vector<unsigned int>& getBitArray();
50   void reverse();
51 };
52
53 }
54
55 #endif // __BIT_ARRAY_H__