while (arc->IsOk())
arc->Read(buf, sizeof(buf));
- entry = auto_ptr<wxArchiveEntry>(arc->GetNextEntry());
+ auto_ptr<wxArchiveEntry> next(arc->GetNextEntry());
+ entry = next;
}
}
template class ArchiveTestCase<wxZipClassFactory>;
#endif
+#if wxUSE_TARSTREAM
+#include "wx/tarstrm.h"
+template class ArchiveTestCase<wxTarClassFactory>;
+#endif
+
#endif // wxUSE_STREAMS && wxUSE_ARCHIVE_STREAMS