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.
15 lines
259 B
C++
15 lines
259 B
C++
#ifndef MIMEBASE64ENCODER_H
|
|
#define MIMEBASE64ENCODER_H
|
|
|
|
#include "mimecontentencoder.h"
|
|
|
|
class MimeBase64Encoder : public MimeContentEncoder
|
|
{
|
|
public:
|
|
MimeBase64Encoder();
|
|
|
|
QByteArray encode(const QByteArray &data);
|
|
};
|
|
|
|
#endif // MIMEBASE64ENCODER_H
|