mirror of https://github.com/status-im/qzxing.git
Completed port of UnsupportedEncodingException
This commit is contained in:
parent
095b27a4b2
commit
4eeccfba38
|
@ -130,7 +130,8 @@ HEADERS += $$PWD/QZXing_global.h \
|
|||
$$PWD/zxing/zxing/qrcode/encoder/MatrixUtil.h \
|
||||
$$PWD/zxing/zxing/qrcode/encoder/QRCode.h \
|
||||
$$PWD/zxing/zxing/WriterException.h \
|
||||
$$PWD/zxing/zxing/EncodeHint.h
|
||||
$$PWD/zxing/zxing/EncodeHint.h \
|
||||
$$PWD/zxing/zxing/UnsupportedEncodingException.h
|
||||
|
||||
SOURCES += $$PWD/CameraImageWrapper.cpp \
|
||||
$$PWD/qzxing.cpp \
|
||||
|
|
|
@ -1,10 +1,17 @@
|
|||
#ifndef UNSUPPORTEDENCODINGEXCEPTION_H
|
||||
#define UNSUPPORTEDENCODINGEXCEPTION_H
|
||||
|
||||
class UnsupportedEncodingException : public zxing::Exception
|
||||
{
|
||||
public:
|
||||
UnsupportedEncodingException();
|
||||
#include <zxing/Exception.h>
|
||||
|
||||
namespace zxing {
|
||||
|
||||
class UnsupportedEncodingException : public Exception {
|
||||
public:
|
||||
UnsupportedEncodingException() throw() {}
|
||||
UnsupportedEncodingException(char const* msg) throw() : Exception(msg) {}
|
||||
~UnsupportedEncodingException() throw() {}
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif // UNSUPPORTEDENCODINGEXCEPTION_H
|
||||
|
|
Loading…
Reference in New Issue