From eff3482ec63dd844d1a325057dc815f63fe930d0 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Thu, 18 Nov 2004 22:13:13 +0000 Subject: [PATCH] Removed the public open methods --- include/osgDB/Archive | 6 ------ 1 file changed, 6 deletions(-) diff --git a/include/osgDB/Archive b/include/osgDB/Archive index 45fa75018..60d33ba84 100644 --- a/include/osgDB/Archive +++ b/include/osgDB/Archive @@ -36,12 +36,6 @@ class OSGDB_EXPORT Archive : public ReaderWriter virtual bool acceptsExtension(const std::string& /*extension*/) { return true; } - /** open the archive for reading, writing or to create an empty archive for writing to.*/ - virtual bool open(const std::string& filename, ArchiveStatus status, unsigned int indexBlockSizeHint=4096) = 0; - - /** open the archive for reading.*/ - virtual bool open(std::istream& fin) = 0; - /** close the archive.*/ virtual void close() = 0;