C++ port: Make sure #indef/#define/#endif's and copyright information on all header...
[zxing.git] / cpp / core / src / zxing / common / BitMatrix.h
1 #ifndef __BIT_MATRIX_H__
2 #define __BIT_MATRIX_H__
3
4 /*
5  *  BitMatrix.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 <limits>
25
26 namespace zxing {
27
28 class BitMatrix : public Counted {
29 private:
30   size_t width_;
31   size_t height_;
32   size_t words_;
33   unsigned int* bits_;
34
35 public:
36   BitMatrix(size_t dimension);
37   BitMatrix(size_t width, size_t height);
38
39   ~BitMatrix();
40   // Inlining this does not really improve performance.
41   bool get(size_t x, size_t y) const;
42   void set(size_t x, size_t y);
43   void flip(size_t x, size_t y);
44   void clear();
45   void setRegion(size_t left, size_t top, size_t width, size_t height);
46
47   size_t getDimension() const;
48   size_t getWidth() const;
49   size_t getHeight() const;
50
51   unsigned int* getBits() const;
52
53   friend std::ostream& operator<<(std::ostream &out, const BitMatrix &bm);
54   const char *description();
55
56 private:
57   BitMatrix(const BitMatrix&);
58   BitMatrix& operator =(const BitMatrix&);
59 };
60
61 }
62
63 #endif // __BIT_MATRIX_H__