32 #ifndef __KMIME_CODEC_UUENCODE_H__ 33 #define __KMIME_CODEC_UUENCODE_H__ 35 #include "kmime_codecs.h" 39 class UUCodec : public Codec { 42 UUCodec() : Codec() {} 47 const char * name() const { 51 int maxEncodedSizeFor( int insize, bool withCRLF= false ) const { 56 int maxDecodedSizeFor( int insize, bool withCRLF= false ) const { 62 int result = ( ( insize + 3 ) / 4 ) * 3; 70 Encoder * makeEncoder( bool withCRLF= false ) const; 71 Decoder * makeDecoder( bool withCRLF= false ) const; 76 #endif // __KMIME_CODEC_UUENCODE_H__
|