Issue 165
[zxing.git] / cpp / core / src / Result.h
1 #ifndef __RESULT_H__
2 #define __RESULT_H__
3
4 /*
5  *  Result.h
6  *  zxing
7  *
8  *  Created by Christian Brunschen on 13/05/2008.
9  *  Copyright 2008 ZXing authors 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 <string>
25 #include "common/Array.h"
26 #include "common/Counted.h"
27 #include "common/Str.h"
28 #include "ResultPoint.h"
29 #include "BarcodeFormat.h"
30
31 using namespace common;
32
33 class Result : public Counted {
34 private:
35   Ref<String> text_;
36   ArrayRef<unsigned char> rawBytes_;
37   ArrayRef<Ref<ResultPoint> > resultPoints_;
38   BarcodeFormat format_;
39 public:
40   Result(Ref<String> text, ArrayRef<unsigned char> rawBytes,
41          ArrayRef<Ref<ResultPoint> > resultPoints,
42          BarcodeFormat format) :
43   text_(text), rawBytes_(rawBytes), 
44   resultPoints_(resultPoints), format_(format) { }
45   ~Result() { }
46   Ref<String> getText() { return text_; }
47   ArrayRef<unsigned char> getRawBytes() { return rawBytes_; }
48   ArrayRef<Ref<ResultPoint> > getResultPoints() { return resultPoints_; }
49   BarcodeFormat getBarcodeFormat() { return format_; }
50   
51   friend ostream& operator<<(ostream &out, Result& result);
52 };
53
54 #endif // __RESULT_H__