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 <valarray>
26 #include <limits>
27
28 namespace zxing {
29
30 class BitMatrix : public Counted {
31 private:
32   size_t width_;
33   size_t height_;
34   size_t words_;
35   unsigned int* bits_;
36
37 public:
38   BitMatrix(size_t dimension);
39   BitMatrix(size_t width, size_t height);
40
41   ~BitMatrix();
42   // Inlining this does not really improve performance.
43   bool get(size_t x, size_t y) const;
44   void set(size_t x, size_t y);
45   void flip(size_t x, size_t y);
46   void clear();
47   void setRegion(size_t left, size_t top, size_t width, size_t height);
48
49   size_t getDimension() const;
50   size_t getWidth() const;
51   size_t getHeight() const;
52
53   unsigned int* getBits();
54
55   friend std::ostream& operator<<(std::ostream &out, BitMatrix &bm);
56   const char *description();
57 };
58
59 }
60
61 #endif // __BIT_MATRIX_H__