GreyscaleRotatedLuminanceSource: implemented getMatrix()
[zxing.git] / cpp / core / src / zxing / common / DecoderResult.h
1 #ifndef __DECODER_RESULT_H__
2 #define __DECODER_RESULT_H__
3
4 /*
5  *  DecoderResult.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/Array.h>
25 #include <string>
26 #include <zxing/common/Str.h>
27
28 namespace zxing {
29
30 class DecoderResult : public Counted {
31 private:
32   ArrayRef<unsigned char> rawBytes_;
33   Ref<String> text_;
34
35 public:
36   DecoderResult(ArrayRef<unsigned char> rawBytes, Ref<String> text);
37   ArrayRef<unsigned char> getRawBytes();
38   Ref<String> getText();
39 };
40
41 }
42
43 #endif // __DECODER_RESULT_H__