diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2013-10-06 10:33:05 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2013-10-06 10:33:05 -0700 |
commit | b479c22c713be413b9135be8f1d4e108d33f17f6 (patch) | |
tree | aaaae4d4fcb5df6ef6414a6e825e8f4e4730f6ee /mimelib/attach.h | |
download | lurker-b479c22c713be413b9135be8f1d4e108d33f17f6.tar.gz lurker-b479c22c713be413b9135be8f1d4e108d33f17f6.tar.bz2 lurker-b479c22c713be413b9135be8f1d4e108d33f17f6.zip |
lurker-2.3
mimelib-3.1.1
Diffstat (limited to 'mimelib/attach.h')
-rw-r--r-- | mimelib/attach.h | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/mimelib/attach.h b/mimelib/attach.h new file mode 100644 index 0000000..32ad7c0 --- /dev/null +++ b/mimelib/attach.h @@ -0,0 +1,56 @@ +//============================================================================= +// File: attach.h +// Contents: Declarations for MessageWithAttachments +// Maintainer: Doug Sauder <dwsauder@fwb.gulf.net> +// WWW: http://www.fwb.gulf.net/~dwsauder/mimepp.html +// $Revision: 1.5 $ +// $Date: 1997/09/27 11:53:32 $ +// +// Copyright (c) 1996, 1997 Douglas W. Sauder +// All rights reserved. +// +// IN NO EVENT SHALL DOUGLAS W. SAUDER BE LIABLE TO ANY PARTY FOR DIRECT, +// INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF +// THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF DOUGLAS W. SAUDER +// HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// DOUGLAS W. SAUDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT +// NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A +// PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" +// BASIS, AND DOUGLAS W. SAUDER HAS NO OBLIGATION TO PROVIDE MAINTENANCE, +// SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +// +//============================================================================= + +#ifndef ATTACH_H +#define ATTACH_H + +#include "multipar.h" + + +class DwString; + + +class MessageWithAttachments : public MultipartMessage { + +public: + + MessageWithAttachments(); + virtual ~MessageWithAttachments(); + + void SetText(const DwString& aStr); + int NumberOfAttachments() const; + void Attach7bitFile(const char* aFilename, int aType=DwMime::kTypeText, + int aSubtype=DwMime::kSubtypePlain); + void Attach8bitFile(const char* aFilename, int aType=DwMime::kTypeText, + int aSubtype=DwMime::kSubtypePlain); + void AttachBinaryFile(const char* aFilename, int aType=DwMime::kTypeApplication, + int aSubtype=DwMime::kSubtypeOctetStream); + +protected: + + int PutFileInString(const char* aFilename, DwString& str); + +}; + +#endif |