X-Git-Url: http://git.rot13.org/?p=zxing.git;a=blobdiff_plain;f=cpp%2Fcore%2Fsrc%2Fzxing%2Foned%2FMultiFormatOneDReader.h;h=33421126104d1e095a11e99ab4b09823633f505f;hp=0e5ab530d528e6249e00141320d2b0ab2b42c606;hb=4c7d60a47387c3b95ce82e35a6c61ba3243f64f5;hpb=24d4480bc48cf9eabf7b2bd2f528248b0e458809 diff --git a/cpp/core/src/zxing/oned/MultiFormatOneDReader.h b/cpp/core/src/zxing/oned/MultiFormatOneDReader.h index 0e5ab530..33421126 100644 --- a/cpp/core/src/zxing/oned/MultiFormatOneDReader.h +++ b/cpp/core/src/zxing/oned/MultiFormatOneDReader.h @@ -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 -#include -#include namespace zxing { namespace oned { @@ -29,9 +28,11 @@ namespace zxing { private: std::vector > readers; public: - MultiFormatOneDReader(); + MultiFormatOneDReader(DecodeHints hints); Ref decodeRow(int rowNumber, Ref row); }; } } + +#endif