You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
151 lines
2.8 KiB
151 lines
2.8 KiB
//=============================================================================
|
|
// File: mimepp.h
|
|
// Contents: MIME++ library include file
|
|
// Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
|
|
// WWW: http://www.fwb.gulf.net/~dwsauder/mimepp.html
|
|
//
|
|
// 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 DW_MIMEPP_H
|
|
#define DW_MIMEPP_H
|
|
|
|
#ifndef DW_CONFIG_H
|
|
#include <mimelib/config.h>
|
|
#endif
|
|
|
|
#ifndef DW_ENUM_H
|
|
#include <mimelib/enum.h>
|
|
#endif
|
|
|
|
#ifndef DW_ADDRESS_H
|
|
#include <mimelib/address.h>
|
|
#endif
|
|
|
|
#ifndef DW_ADDRLIST_H
|
|
#include <mimelib/addrlist.h>
|
|
#endif
|
|
|
|
#ifndef DW_BODY_H
|
|
#include <mimelib/body.h>
|
|
#endif
|
|
|
|
#ifndef DW_BODYPART_H
|
|
#include <mimelib/bodypart.h>
|
|
#endif
|
|
|
|
#ifndef DW_BOYERMOR_H
|
|
#include <mimelib/boyermor.h>
|
|
#endif
|
|
|
|
#ifndef DW_DATETIME_H
|
|
#include <mimelib/datetime.h>
|
|
#endif
|
|
|
|
#ifndef DW_DISPTYPE_H
|
|
#include <mimelib/disptype.h>
|
|
#endif
|
|
|
|
#ifndef DW_DWSTRING_H
|
|
#include <mimelib/string.h>
|
|
#endif
|
|
|
|
#ifndef DW_ENTITY_H
|
|
#include <mimelib/entity.h>
|
|
#endif
|
|
|
|
#ifndef DW_FIELD_H
|
|
#include <mimelib/field.h>
|
|
#endif
|
|
|
|
#ifndef DW_FIELDBDY_H
|
|
#include <mimelib/fieldbdy.h>
|
|
#endif
|
|
|
|
#ifndef DW_GROUP_H
|
|
#include <mimelib/group.h>
|
|
#endif
|
|
|
|
#ifndef DW_HEADER_H
|
|
#include <mimelib/headers.h>
|
|
#endif
|
|
|
|
#ifndef DW_MAILBOX_H
|
|
#include <mimelib/mailbox.h>
|
|
#endif
|
|
|
|
#ifndef DW_MBOXLIST_H
|
|
#include <mimelib/mboxlist.h>
|
|
#endif
|
|
|
|
#ifndef DW_MECHANSM_H
|
|
#include <mimelib/mechansm.h>
|
|
#endif
|
|
|
|
#ifndef DW_MEDIATYP_H
|
|
#include <mimelib/mediatyp.h>
|
|
#endif
|
|
|
|
#ifndef DW_MESSAGE_H
|
|
#include <mimelib/message.h>
|
|
#endif
|
|
|
|
#ifndef DW_MSGCMP_H
|
|
#include <mimelib/msgcmp.h>
|
|
#endif
|
|
|
|
#ifndef DW_MSGID_H
|
|
#include <mimelib/msgid.h>
|
|
#endif
|
|
|
|
#ifndef DW_NNTP_H
|
|
#include <mimelib/nntp.h>
|
|
#endif
|
|
|
|
#ifndef DW_PARAM_H
|
|
#include <mimelib/param.h>
|
|
#endif
|
|
|
|
#ifndef DW_POP_H
|
|
#include <mimelib/pop.h>
|
|
#endif
|
|
|
|
#ifndef DW_PROTOCOL_H
|
|
#include <mimelib/protocol.h>
|
|
#endif
|
|
|
|
//#ifndef DW_SMTP_H
|
|
//#include <mimelib/smtp.h>
|
|
//#endif
|
|
|
|
#ifndef DW_TEXT_H
|
|
#include <mimelib/text.h>
|
|
#endif
|
|
|
|
#ifndef DW_TOKEN_H
|
|
#include <mimelib/token.h>
|
|
#endif
|
|
|
|
#ifndef DW_UUENCODE_H
|
|
#include <mimelib/uuencode.h>
|
|
#endif
|
|
|
|
#ifndef DW_UTILITY_H
|
|
#include <mimelib/utility.h>
|
|
#endif
|
|
|
|
#endif
|