Cleaned up the iPhone code so that it compiles with the 3.1.2 SDK. Also tightened...
[zxing.git] / cpp / core / src / zxing / 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 <vector>
26 #include <zxing/common/Array.h>
27 #include <zxing/common/Counted.h>
28 #include <zxing/common/Str.h>
29 #include <zxing/ResultPoint.h>
30 #include <zxing/BarcodeFormat.h>
31
32 namespace zxing {
33
34 class Result : public Counted {
35 private:
36   Ref<String> text_;
37   ArrayRef<unsigned char> rawBytes_;
38   std::vector<Ref<ResultPoint> > resultPoints_;
39   BarcodeFormat format_;
40
41 public:
42   Result(Ref<String> text, ArrayRef<unsigned char> rawBytes, std::vector<Ref<ResultPoint> > resultPoints,
43          BarcodeFormat format);
44   ~Result();
45   Ref<String> getText();
46   ArrayRef<unsigned char> getRawBytes();
47   const std::vector<Ref<ResultPoint> >& getResultPoints() const;
48   BarcodeFormat getBarcodeFormat() const;
49
50   friend std::ostream& operator<<(std::ostream &out, Result& result);
51 };
52
53 }
54 #endif // __RESULT_H__