Updates to C++ port:
[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  *  Created by Christian Brunschen on 12/05/2008.
9  *  Copyright 2008 Google UK. All rights reserved.
10  *
11  * Licensed under the Apache License, Version 2.0 (the "License");
12  * you may not use this file except in compliance with the License.
13  * You may obtain a copy of the License at
14  *
15  *      http://www.apache.org/licenses/LICENSE-2.0
16  *
17  * Unless required by applicable law or agreed to in writing, software
18  * distributed under the License is distributed on an "AS IS" BASIS,
19  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20  * See the License for the specific language governing permissions and
21  * limitations under the License.
22  */
23
24 #include <zxing/common/Counted.h>
25 #include <limits>
26
27 namespace zxing {
28
29 class BitMatrix : public Counted {
30 private:
31   size_t width_;
32   size_t height_;
33   size_t words_;
34   unsigned int* bits_;
35
36 public:
37   BitMatrix(size_t dimension);
38   BitMatrix(size_t width, size_t height);
39
40   ~BitMatrix();
41   // Inlining this does not really improve performance.
42   bool get(size_t x, size_t y) const;
43   void set(size_t x, size_t y);
44   void flip(size_t x, size_t y);
45   void clear();
46   void setRegion(size_t left, size_t top, size_t width, size_t height);
47
48   size_t getDimension() const;
49   size_t getWidth() const;
50   size_t getHeight() const;
51
52   unsigned int* getBits() const;
53
54   friend std::ostream& operator<<(std::ostream &out, const BitMatrix &bm);
55   const char *description();
56
57 private:
58   BitMatrix(const BitMatrix&);
59   BitMatrix& operator =(const BitMatrix&);
60 };
61
62 }
63
64 #endif // __BIT_MATRIX_H__