Converted tabs to spaces.
[zxing.git] / cpp / core / src / zxing / oned / UPCEReader.h
index 2a9e89a..42a4fd0 100644 (file)
 #include <zxing/Result.h>
 
 namespace zxing {
-       namespace oned {
-               class UPCEReader : public UPCEANReader {
-                       
-               private:
-                       static void determineFirstDigit(std::string& resultString, int lgPatternFound);                                                         //throws ReaderException
-                       static void determineNumSysAndCheckDigit(std::string& resultString, int lgPatternFound);                                                //throws ReaderException
-               protected:
-                       int* decodeEnd(Ref<BitArray> row, int endStart);                                                                                                                        //throws ReaderException
-                       bool checkChecksum(std::string s);                                                                                                                                                      //throws ReaderException 
-               public:
-                       UPCEReader();
-                       
-                       int decodeMiddle(Ref<BitArray> row, int startRange[], int startRangeLen, std::string& resultString);            //throws ReaderException
-                       static std::string convertUPCEtoUPCA(std::string upce);
-                       
-                       BarcodeFormat getBarcodeFormat();
-               };
-       }
+  namespace oned {
+    class UPCEReader : public UPCEANReader {
+
+    private:
+      static bool determineNumSysAndCheckDigit(std::string& resultString, int lgPatternFound);
+    protected:
+      int* decodeEnd(Ref<BitArray> row, int endStart);
+      bool checkChecksum(std::string s);
+    public:
+      UPCEReader();
+
+      int decodeMiddle(Ref<BitArray> row, int startRange[], int startRangeLen,
+          std::string& resultString);
+      static std::string convertUPCEtoUPCA(std::string upce);
+
+      BarcodeFormat getBarcodeFormat();
+    };
+  }
 }
 
 #endif