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
506 B
23 lines
506 B
14 years ago
|
#ifndef DCTDecode_H
|
||
|
#define DCTDecode_H
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
namespace merge_lib
|
||
|
{
|
||
|
// this class provides method for FlateDecode encoding and decoding
|
||
|
class DCTDecode : public Decoder
|
||
|
{
|
||
|
public:
|
||
|
DCTDecode(){};
|
||
|
virtual ~DCTDecode(){};
|
||
|
bool encode(std::string & decoded) {return true;};
|
||
|
bool decode(std::string & encoded) {return true;};
|
||
|
void initialize(Object * objectWithStram){};
|
||
|
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif // FLATEDECODE_H_INCLUDED
|
||
|
|