9e048495ba
(waitForReadyConnected, waitForAuthenticated, waitForMailSent) synchronous waiting. Added writeToDevice() function to MimeMessage and MimePart (and subclasses), now these are used in SmtpClient instead of toString(). Added some unit tests.
16 lines
311 B
C++
16 lines
311 B
C++
#ifndef MIMEBASE64FORMATTER_H
|
|
#define MIMEBASE64FORMATTER_H
|
|
|
|
#include "mimecontentformatter.h"
|
|
|
|
class MimeBase64Formatter : public MimeContentFormatter
|
|
{
|
|
public:
|
|
MimeBase64Formatter(QIODevice*);
|
|
|
|
protected:
|
|
virtual qint64 writeData(const char *data, qint64 len);
|
|
};
|
|
|
|
#endif // MIMEBASE64FORMATTER_H
|