Converted tabs to spaces.
[zxing.git] / cpp / core / src / zxing / oned / EAN8Reader.h
index 0118eaa..5709a6b 100644 (file)
 #include <zxing/Result.h>
 
 namespace zxing {
-       namespace oned {
-               class EAN8Reader : public UPCEANReader {
-                       
-               public:
-                       EAN8Reader();
-                       
-                       int decodeMiddle(Ref<BitArray> row, int startRange[], int startRangeLen, std::string& resultString);                    //throws ReaderException
-                       
-                       BarcodeFormat getBarcodeFormat();
-               };
-       }
+  namespace oned {
+    class EAN8Reader : public UPCEANReader {
+
+    public:
+      EAN8Reader();
+
+      int decodeMiddle(Ref<BitArray> row, int startRange[], int startRangeLen,
+          std::string& resultString);
+
+      BarcodeFormat getBarcodeFormat();
+    };
+  }
 }
 
 #endif