C++ port: Hints infrastructure was added in r1499. This changeset implements reader...
[zxing.git] / cpp / core / src / zxing / oned / MultiFormatOneDReader.h
index 0e5ab53..3342112 100644 (file)
@@ -1,9 +1,10 @@
+#ifndef __MULTI_FORMAT_ONED_READER_H__
+#define __MULTI_FORMAT_ONED_READER_H__
 /*
  *  MultiFormatOneDReader.h
  *  ZXing
  *
- *  Created by Lukasz Warchol on 10-01-25.
- *  Copyright 2010 ZXing authors All rights reserved.
+  *  Copyright 2010 ZXing authors All rights reserved.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -19,8 +20,6 @@
  */
 
 #include <zxing/oned/OneDReader.h>
-#include <zxing/common/BitArray.h>
-#include <zxing/Result.h>
 
 namespace zxing {
        namespace oned {
@@ -29,9 +28,11 @@ namespace zxing {
                private:
                        std::vector<Ref<OneDReader> > readers;
                public:
-                       MultiFormatOneDReader();
+                       MultiFormatOneDReader(DecodeHints hints);
                        
                        Ref<Result> decodeRow(int rowNumber, Ref<BitArray> row);                        
                };
        }
 }
+
+#endif