X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=cpp%2Fcore%2Fsrc%2Fzxing%2Foned%2FEAN8Reader.h;h=0118eaa30f414684a475b868ccf690855109b5d7;hb=30f0e5e9eeab4a85a378809bfa7007b128694138;hp=3e4f3d67e46664c65df6b83d8a058730aba18ae6;hpb=f60aaa3608812e2e19550c0ced1ce0f947dfedb0;p=zxing.git diff --git a/cpp/core/src/zxing/oned/EAN8Reader.h b/cpp/core/src/zxing/oned/EAN8Reader.h index 3e4f3d67..0118eaa3 100644 --- a/cpp/core/src/zxing/oned/EAN8Reader.h +++ b/cpp/core/src/zxing/oned/EAN8Reader.h @@ -1,8 +1,10 @@ +#ifndef __EAN_8_READER_H__ +#define __EAN_8_READER_H__ + /* * EAN8Reader.h * ZXing * - * Created by Lukasz Warchol on 10-01-25. * Copyright 2010 ZXing authors All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); @@ -25,16 +27,14 @@ namespace zxing { namespace oned { class EAN8Reader : public UPCEANReader { - private: - int* decodeMiddleCounters; - public: EAN8Reader(); int decodeMiddle(Ref row, int startRange[], int startRangeLen, std::string& resultString); //throws ReaderException BarcodeFormat getBarcodeFormat(); - ~EAN8Reader(); }; } -} \ No newline at end of file +} + +#endif