C++ port: update test binary with more flags and add barcode format names next to...
[zxing.git] / cpp / core / src / zxing / BarcodeFormat.cpp
index b31afcc..7badb2a 100755 (executable)
 
 #include <zxing/BarcodeFormat.h>
 
+namespace zxing {
+
+const char *barcodeFormatNames[] = {
+    "None",
+    "QR_CODE",
+    "DATA_MATRIX",
+    "UPC_E",
+    "UPC_A",
+    "EAN_8",
+    "EAN_13",
+    "CODE_128",
+    "CODE_39",
+    "ITF"
+};
+
+}