The MIME decoder library
Summary
What: This is the MIME decoder library. This is a C++ library
which performs dynamic decode of a MIME-encoded stream.
How: You get a simple, lightweight, policy-free library providing
a C++ interface. It decodes a MIME stream dynamically, presenting you
with the decoded content as it is decoded.
Author: The MIME Decoders. Contact:
Licence: The so-called X11 licence. Read it
here..
Downloads
See also
Using it
First, study the pointless example
simple.C source file (included in
the distribution).
Then, head over to the doxygen generated
documentation. You get this library to do something useful by deriving from
the
mime::decoder class,
and implementing the four methods:
data_start
,
data
,
data_end
and
object_created
methods.