attachment.h
00001
00021
#ifndef KOMPOSER_ATTACHMENT_H
00022
#define KOMPOSER_ATTACHMENT_H
00023
00024
#include <qstring.h>
00025
#include <qcstring.h>
00026
#include <qvaluelist.h>
00027
00028 namespace Komposer
00029 {
00030
00031
class Attachment
00032 {
00033
public:
00034 Attachment(
const QString &name,
00035
const QCString &cte,
00036
const QByteArray &data,
00037
const QCString &type,
00038
const QCString &subType,
00039
const QCString ¶mAttr,
00040
const QString ¶mValue,
00041
const QCString &contDisp );
00042 ~Attachment();
00043
00044 QString name()
const;
00045 QCString cte()
const;
00046 QByteArray data()
const;
00047 QCString type()
const;
00048 QCString subType()
const;
00049 QCString paramAttr()
const;
00050 QString paramValue()
const;
00051 QCString contentDisposition()
const;
00052
00053
private:
00054
class Private;
00055 Private* d;
00056 };
00057
typedef QValueList<Attachment> AttachmentList;
00058 }
00059
00060
#endif
This file is part of the documentation for libkdepim Library Version 3.2.2.