X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=cpp%2Fcore%2Fsrc%2Fzxing%2FReader.h;h=05c741b4e56759d5c6af5f94b91a7e11f0369e8f;hb=cdcad8e2af288e66a22a247235bc0f6081e95215;hp=d7844a9ae29e940279a31dce00b57f4223e18e83;hpb=d7cf61c05100985f6dd9dddc1f4631cb690c28fa;p=zxing.git diff --git a/cpp/core/src/zxing/Reader.h b/cpp/core/src/zxing/Reader.h index d7844a9a..05c741b4 100755 --- a/cpp/core/src/zxing/Reader.h +++ b/cpp/core/src/zxing/Reader.h @@ -5,8 +5,7 @@ * Reader.h * zxing * - * Created by Christian Brunschen on 13/05/2008. - * Copyright 2008 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. @@ -23,6 +22,7 @@ #include #include +#include namespace zxing { @@ -30,7 +30,8 @@ namespace zxing { protected: Reader() {} public: - virtual Ref decode(Ref image) = 0; + virtual Ref decode(Ref image); + virtual Ref decode(Ref image, DecodeHints hints) = 0; virtual ~Reader(); };