aboutsummaryrefslogtreecommitdiff
path: root/engines/groovie/lzss.h
diff options
context:
space:
mode:
authorJordi Vilalta Prat2010-01-02 00:07:20 +0000
committerJordi Vilalta Prat2010-01-02 00:07:20 +0000
commita22fd021e9fe1e798bf72c537cce482268d1c9ed (patch)
tree6966c7c9ed624993a48debf7f6e7efa17d692b6f /engines/groovie/lzss.h
parent998d511eeb6d34825dbfc110cacf83dc5e453c74 (diff)
downloadscummvm-rg350-a22fd021e9fe1e798bf72c537cce482268d1c9ed.tar.gz
scummvm-rg350-a22fd021e9fe1e798bf72c537cce482268d1c9ed.tar.bz2
scummvm-rg350-a22fd021e9fe1e798bf72c537cce482268d1c9ed.zip
Move the LZSS code to the Groovie namespace.
svn-id: r46867
Diffstat (limited to 'engines/groovie/lzss.h')
-rw-r--r--engines/groovie/lzss.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/groovie/lzss.h b/engines/groovie/lzss.h
index 2aa0816252..f78bc20351 100644
--- a/engines/groovie/lzss.h
+++ b/engines/groovie/lzss.h
@@ -25,6 +25,8 @@
#include "common/stream.h"
+namespace Groovie {
+
class LzssReadStream : public Common::ReadStream {
private:
uint8 *_outLzssBufData;
@@ -40,3 +42,5 @@ public:
bool eos() const;
uint32 read(void *buf, uint32 size);
};
+
+} // End of Groovie namespace