You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
416 B
24 lines
416 B
#ifndef MIMECONTENTFORMATTER_H
|
|
#define MIMECONTENTFORMATTER_H
|
|
|
|
#include <QObject>
|
|
#include <QByteArray>
|
|
|
|
class MimeContentFormatter : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
MimeContentFormatter(int max_length = 76);
|
|
|
|
void setMaxLength(int l);
|
|
int getMaxLength() const;
|
|
|
|
QString format(const QString &content, bool quotedPrintable = false) const;
|
|
|
|
protected:
|
|
int max_length;
|
|
|
|
};
|
|
|
|
#endif // MIMECONTENTFORMATTER_H
|