diff options
author | Vincent Richard <[email protected]> | 2004-12-22 14:55:43 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2004-12-22 14:55:43 +0000 |
commit | 4f9e439eecbca00b6de0d64e8a3f39b5e7707284 (patch) | |
tree | a2631ed6d1a86ac9f81164f1b9305434aed0a362 /src/encoderQP.cpp | |
parent | Updated ChangeLog for new functions in 'component'. (diff) | |
download | vmime-4f9e439eecbca00b6de0d64e8a3f39b5e7707284.tar.gz vmime-4f9e439eecbca00b6de0d64e8a3f39b5e7707284.zip |
Some more class documentation.
Diffstat (limited to 'src/encoderQP.cpp')
-rw-r--r-- | src/encoderQP.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
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) { |