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