You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
549 B
23 lines
549 B
14 years ago
|
#ifndef RunLengthDecode_H
|
||
|
#define RunLengthDecode_H
|
||
|
|
||
|
#include <string>
|
||
|
#include "Decoder.h"
|
||
|
|
||
|
namespace merge_lib
|
||
|
{
|
||
|
// this class provides method for RunLengthDecode aaaaaencoding and decoding
|
||
|
class RunLengthDecode : public Decoder
|
||
|
{
|
||
|
public:
|
||
|
RunLengthDecode(){};
|
||
|
virtual ~RunLengthDecode(){};
|
||
|
bool encode(std::string & decoded){return false;}
|
||
|
bool decode(std::string & encoded);
|
||
|
void initialize(Object * objectWithStream){};
|
||
|
|
||
|
};
|
||
|
}
|
||
|
#endif // FLATEDECODE_H_INCLUDED
|
||
|
|