qt_demoe/tool/3rd_smtpclient/mimehtml.h

22 lines
302 B
C
Raw Normal View History

2019-11-21 06:28:56 +00:00
#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