mirror of
https://github.com/zxing/zxing.git
synced 2025-02-02 05:41:08 -08:00
tweak formating
git-svn-id: https://zxing.googlecode.com/svn/trunk@2488 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
parent
036918d4c0
commit
1cb7380961
|
@ -1,3 +1,4 @@
|
|||
// -*- mode:c++; tab-width:2; indent-tabs-mode:nil; c-basic-offset:2 -*-
|
||||
/*
|
||||
* Decoder.cpp
|
||||
* zxing
|
||||
|
@ -27,13 +28,12 @@
|
|||
#include <zxing/ReaderException.h>
|
||||
#include <zxing/common/reedsolomon/ReedSolomonException.h>
|
||||
|
||||
namespace zxing {
|
||||
namespace qrcode {
|
||||
|
||||
using namespace std;
|
||||
using zxing::qrcode::Decoder;
|
||||
using zxing::DecoderResult;
|
||||
using zxing::Ref;
|
||||
|
||||
Decoder::Decoder() :
|
||||
rsDecoder_(GenericGF::QR_CODE_FIELD_256) {
|
||||
rsDecoder_(GenericGF::QR_CODE_FIELD_256) {
|
||||
}
|
||||
|
||||
void Decoder::correctErrors(ArrayRef<unsigned char> codewordBytes, int numDataCodewords) {
|
||||
|
@ -98,5 +98,3 @@ Ref<DecoderResult> Decoder::decode(Ref<BitMatrix> bits) {
|
|||
DecodedBitStreamParser::Hashtable());
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue