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.
24 lines
322 B
24 lines
322 B
#include "mimehtml.h"
|
|
|
|
MimeHtml::MimeHtml(const QString &html) : MimeText(html)
|
|
{
|
|
this->cType = "text/html";
|
|
}
|
|
|
|
MimeHtml::~MimeHtml() {}
|
|
|
|
void MimeHtml::setHtml(const QString &html)
|
|
{
|
|
this->text = html;
|
|
}
|
|
|
|
const QString &MimeHtml::getHtml() const
|
|
{
|
|
return text;
|
|
}
|
|
|
|
void MimeHtml::prepare()
|
|
{
|
|
MimeText::prepare();
|
|
}
|