Cleaned up the iPhone code so that it compiles with the 3.1.2 SDK. Also tightened...
[zxing.git] / cpp / core / src / zxing / oned / MultiFormatUPCEANReader.h
index 706f9c4..2c5b196 100644 (file)
@@ -29,13 +29,11 @@ namespace zxing {
                class MultiFormatUPCEANReader : public OneDReader {
                        
                private:
-                       std::vector<OneDReader*>* readers;
+                       std::vector<Ref<OneDReader> > readers;
                public:
                        MultiFormatUPCEANReader();
                        
                        Ref<Result> decodeRow(int rowNumber, Ref<BitArray> row);
-                       
-                       ~MultiFormatUPCEANReader();
-               };
+    };
        }
-}
\ No newline at end of file
+}