彻底改版2.0
This commit is contained in:
22
tool/3rd_smtpclient/mimetext.h
Normal file
22
tool/3rd_smtpclient/mimetext.h
Normal file
@@ -0,0 +1,22 @@
|
||||
#ifndef MIMETEXT_H
|
||||
#define MIMETEXT_H
|
||||
|
||||
#include "mimepart.h"
|
||||
|
||||
class MimeText : public MimePart
|
||||
{
|
||||
public:
|
||||
|
||||
MimeText(const QString &text = "");
|
||||
~MimeText();
|
||||
|
||||
void setText(const QString &text);
|
||||
const QString &getText() const;
|
||||
|
||||
protected:
|
||||
QString text;
|
||||
void prepare();
|
||||
|
||||
};
|
||||
|
||||
#endif // MIMETEXT_H
|
||||
Reference in New Issue
Block a user