重新改进支持Qt4.6-Qt6.1
This commit is contained in:
21
3rd_smtpclient/mimehtml.h
Normal file
21
3rd_smtpclient/mimehtml.h
Normal file
@@ -0,0 +1,21 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user