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