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.
22 lines
302 B
22 lines
302 B
#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
|