mirror of
https://github.com/status-im/qzxing.git
synced 2025-02-08 00:55:33 +00:00
Based on Feb 2012 ZXing sources. Added small Aztec code support, improved detection of 1D barcodes. Signed-off-by: conxt <apps@mint.com.ua>
24 lines
362 B
C++
24 lines
362 B
C++
/*
|
|
* DetectorException.cpp
|
|
*
|
|
* Created on: Aug 26, 2011
|
|
* Author: luiz
|
|
*/
|
|
|
|
#include "DetectorException.h"
|
|
|
|
namespace zxing {
|
|
namespace datamatrix {
|
|
|
|
DetectorException::DetectorException(const char *msg) :
|
|
Exception(msg) {
|
|
|
|
}
|
|
|
|
DetectorException::~DetectorException() throw () {
|
|
// TODO Auto-generated destructor stub
|
|
}
|
|
|
|
}
|
|
} /* namespace zxing */
|