From 4f9e439eecbca00b6de0d64e8a3f39b5e7707284 Mon Sep 17 00:00:00 2001 From: Vincent Richard Date: Wed, 22 Dec 2004 14:55:43 +0000 Subject: Some more class documentation. --- src/encoderQP.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/encoderQP.cpp') diff --git a/src/encoderQP.cpp b/src/encoderQP.cpp index 5b019319..d37ac351 100644 --- a/src/encoderQP.cpp +++ b/src/encoderQP.cpp @@ -71,6 +71,8 @@ const unsigned char encoderQP::sm_hexDecodeTable[256] = }; +#ifndef VMIME_BUILDING_DOC + #define QP_ENCODE_HEX(x) \ outBuffer[outBufferPos] = '='; \ outBuffer[outBufferPos + 1] = sm_hexDigits[x >> 4]; \ @@ -78,6 +80,8 @@ const unsigned char encoderQP::sm_hexDecodeTable[256] = outBufferPos += 3; \ curCol += 3; +#endif // VMIME_BUILDING_DOC + const utility::stream::size_type encoderQP::encode(utility::inputStream& in, utility::outputStream& out) { -- cgit v1.2.3