Cleaned up the iPhone code so that it compiles with the 3.1.2 SDK. Also tightened...
[zxing.git] / cpp / core / src / zxing / MultiFormatReader.h
index 9fca54f..4cbe61b 100644 (file)
@@ -27,12 +27,11 @@ namespace zxing {
        class MultiFormatReader : public Reader {
                
        private:
-               std::vector<Reader*>* readers;
+               std::vector<Ref<Reader> >readers;
        public:
                MultiFormatReader();
                
                Ref<Result> decode(Ref<BinaryBitmap> image);
-               
-               ~MultiFormatReader();
+  
        };
-}
\ No newline at end of file
+}