aboutsummaryrefslogtreecommitdiff
path: root/common/unarj.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/unarj.h')
-rw-r--r--common/unarj.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/common/unarj.h b/common/unarj.h
index 060e72f560..992240be67 100644
--- a/common/unarj.h
+++ b/common/unarj.h
@@ -32,10 +32,11 @@
namespace Common {
struct ArjHeader;
-class ArjDecoder;
typedef HashMap<String, int, IgnoreCase_Hash, IgnoreCase_EqualTo> ArjFilesMap;
+// TODO: Get rid of this class, by implementing an ArjArchive subclass of Common::Archive.
+// Then ArjFile can be substituted by a SearchSet full of ArjArchives plus SearchMan.
class ArjFile : public SeekableReadStream, public NonCopyable {
public:
ArjFile();
@@ -63,8 +64,6 @@ private:
StringMap _archMap;
SeekableReadStream *_uncompressed;
-
- ArjDecoder *_decoder;
};
} // End of namespace Common