Changed C++ QrCode class to eliminate const from fields, updated related code.

This commit is contained in:
Project Nayuki
2017-09-06 04:03:52 +00:00
parent 70a181753a
commit a138e6fbc3
4 changed files with 33 additions and 9 deletions
+15
View File
@@ -164,6 +164,21 @@ QrCode::QrCode(const QrCode &qr, int mask) :
}
int QrCode::getVersion() const {
return version;
}
int QrCode::getSize() const {
return size;
}
QrCode::Ecc QrCode::getErrorCorrectionLevel() const {
return errorCorrectionLevel;
}
int QrCode::getMask() const {
return mask;
}