Support DATA_MATRIX format - closes #139
This commit is contained in:
parent
2680f5f05d
commit
be3d15f2b8
1 changed files with 2 additions and 0 deletions
|
@ -7,6 +7,7 @@ enum class PassBarCodeFormat {
|
|||
AZTEC,
|
||||
CODE_39,
|
||||
CODE_128,
|
||||
DATA_MATRIX,
|
||||
EAN_13,
|
||||
ITF,
|
||||
PDF_417,
|
||||
|
@ -21,6 +22,7 @@ enum class PassBarCodeFormat {
|
|||
AZTEC -> BarcodeFormat.AZTEC
|
||||
CODE_39 -> BarcodeFormat.CODE_39
|
||||
CODE_128 -> BarcodeFormat.CODE_128
|
||||
DATA_MATRIX -> BarcodeFormat.DATA_MATRIX
|
||||
EAN_13 -> BarcodeFormat.EAN_13
|
||||
ITF -> BarcodeFormat.ITF
|
||||
PDF_417 -> BarcodeFormat.PDF_417
|
||||
|
|
Loading…
Reference in a new issue