Classes | |
| struct | ByteBuffer |
| Byte buffer structure. More... | |
| struct | CharBuffer |
| Character buffer structure. More... | |
| class | Class |
| Class that provides run-time type information More... | |
| class | String |
| class | TextUtil |
| Class that provides text utility functions More... | |
| class | Node |
| Abstract base class for all classes representing message components. More... | |
| class | Parameter |
| Class that represents a MIME field body parameter More... | |
| class | FieldBody |
| Class that represents a header field body More... | |
| class | MsgId |
| Class that represents an RFC 2822 message ID More... | |
| class | EncodedWord |
| Class that represents an encoded word in a header field More... | |
| class | Text |
| Class that represents text in an unstructured header field body More... | |
| class | Address |
| Abstract class that represents an RFC 2822 mail address. More... | |
| class | Mailbox |
| Class that represents an RFC 2822 mailbox More... | |
| class | AddressList |
| Class that represents a list of RFC 2822 mail addresses More... | |
| class | MailboxList |
| Class that represents a list of RFC 2822 mailboxes More... | |
| class | Group |
| Class that represents an RFC 2822 address group More... | |
| class | DateTime |
| Class that represents an RFC 2822 date-time More... | |
| class | DispositionType |
| Class that represents a MIME content-disposition field body More... | |
| class | Stamp |
| Class that represents the field body of a "Received" header field. More... | |
| class | TransferEncodingType |
| Class that represents a MIME content-transfer-encoding field body More... | |
| class | MediaType |
| Class that represents a MIME media-type More... | |
| class | Field |
| Class that represents a header field More... | |
| class | Headers |
| Class that represents the collection of header fields in a message or body part More... | |
| class | Body |
| Class that represents the body of a message or body part More... | |
| class | Entity |
| Abstract class that represents a MIME entity. More... | |
| class | BodyPart |
| Class that represents a MIME body part More... | |
| class | Message |
| Class that represents an RFC 2822/MIME message More... | |
| class | AppleFile |
| Class for packing and unpacking AppleSingle and AppleDouble data More... | |
| class | BinHex |
| Class for converting files to or from BinHex 4.0 format More... | |
| class | Uuencode |
| Class for performing uuencode or uudecode operations More... | |
| class | Base64Decoder |
| Class that performs base64 decoding. More... | |
| class | Base64Encoder |
| Class that performs base64 encoding. More... | |
| class | QuotedPrintableDecoder |
| Class that performs quoted-printable decoding. More... | |
| class | QuotedPrintableEncoder |
| Class that performs quoted-printable encoding. More... | |
| class | TextDecoder |
| Class that performs text character decoding. More... | |
| class | TextEncoder |
| Class that performs text character encoding. More... | |
| class | TnefAttachment |
| Class that represents a TNEF attachment. More... | |
| class | TnefDecoder |
| Utility class that performs TNEF attachment decoding. More... | |
Functions | |
| MIMEPP_API bool | Initialize () |
| Initializes the library. | |
| MIMEPP_API void | Finalize () |
| Finalizes the library. | |
| MIMEPP_API void | setMaxDepth (int maxDepth) |
| Sets the maximum depth of nested body parts for the parser. | |
| MIMEPP_API void | setTextConverterImpl (int choice) |
| Sets the selection for the text converter implementation. | |
| MIMEPP_API const char * | versionInfo () |
| Gets the version information string. | |
| MIMEPP_API const char * | buildInfo () |
| Gets the build information string. | |
|
|
Gets the build information string. This function is helpful for debugging, as it provides accurate information about the build of the Hunny MIME++ library that your application uses. The returned string is static. You must not attempt to free the returned string.
|
|
|
Finalizes the library. Your application may optionally call this global function. Normally, you don't need to call Finalize(), because the operating system cleans up all application resources. However, if you run a utility to check for memory leaks, you may choose to call Finalize() just before your application exits. |
|
|
Initializes the library. Your application must call this global function at application start-up time, before you create any threads. |
|
|
Sets the maximum depth of nested body parts for the parser. In order to avoid the possibility of a denial-of-service attack, Hunny MIME++ limits the maximum depth of nested body parts that the parser will automatically parse. The default value is 5, which is enough for virtually all email messages. However, the option is configurable via this function. You should call this function only at application start-up time if the default value is not acceptable.
|
|
|
Sets the selection for the text converter implementation. Hunny MIME++ uses external libraries or components to perform text encoding conversions. Developers may choose the implementation at application start-up time. The implementation options include the following:
Hunny MIME++ provides an enumerated value for each option. The following enumerated values are defined in the include file mimepp/mimepp.h:
ICU The default value is ICU. To select an implementation that is not the default, you may call this function at application start-up time, before you call mimepp::Initialize().
|
|
|
Gets the version information string. This function is helpful for debugging, as it provides accurate information about the version of the Hunny MIME++ library that your application uses. The returned string is static. You must not attempt to free the returned string.
|
Copyright © 2001-2007 Hunny Software, Inc. All rights reserved.