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.
24 lines
615 B
24 lines
615 B
#ifndef ASCII85Decode_H
|
|
#define ASCII85Decode_H
|
|
|
|
#include <string>
|
|
|
|
#include "Decoder.h"
|
|
namespace merge_lib
|
|
{
|
|
// this class provides method for FlateDecode encoding and decoding
|
|
class ASCII85Decode : public Decoder
|
|
{
|
|
public:
|
|
ASCII85Decode(){};
|
|
virtual ~ASCII85Decode(){};
|
|
bool encode(std::string & decoded) {return false;}
|
|
bool decode(std::string & encoded);
|
|
void initialize(Object * objectWithStram){};
|
|
private:
|
|
void _wput(std::string &cur,unsigned long tuple, int len);
|
|
|
|
};
|
|
}
|
|
#endif // FLATEDECODE_H_INCLUDED
|
|
|
|
|