22 lines
302 B
C
22 lines
302 B
C
|
#ifndef MIMEHTML_H
|
|||
|
#define MIMEHTML_H
|
|||
|
|
|||
|
#include "mimetext.h"
|
|||
|
|
|||
|
class MimeHtml : public MimeText
|
|||
|
{
|
|||
|
Q_OBJECT
|
|||
|
public:
|
|||
|
MimeHtml(const QString &html = "");
|
|||
|
~MimeHtml();
|
|||
|
|
|||
|
void setHtml(const QString &html);
|
|||
|
const QString &getHtml() const;
|
|||
|
|
|||
|
protected:
|
|||
|
virtual void prepare();
|
|||
|
|
|||
|
};
|
|||
|
|
|||
|
#endif // MIMEHTML_H
|