Small style stuff
[zxing.git] / cpp / core / src / zxing / oned / EAN13Reader.h
index fa7b7e8..4ba4e0b 100644 (file)
 #include <zxing/Result.h>
 
 namespace zxing {
-       namespace oned {
-               class EAN13Reader : public UPCEANReader {
+  namespace oned {
+    class EAN13Reader : public UPCEANReader {
 
-               private:
-                       static bool determineFirstDigit(std::string& resultString, int lgPatternFound);
+    private:
+      static bool determineFirstDigit(std::string& resultString, int lgPatternFound);
 
-               public:
-                       EAN13Reader();
+    public:
+      EAN13Reader();
 
-                       int decodeMiddle(Ref<BitArray> row, int startRange[], int startRangeLen,
-                           std::string& resultString);
+      int decodeMiddle(Ref<BitArray> row, int startGuardBegin, int startGuardEnd,
+          std::string& resultString);
 
-                       BarcodeFormat getBarcodeFormat();
-               };
-       }
+      BarcodeFormat getBarcodeFormat();
+    };
+  }
 }
 
 #endif