#ifndef MIMEPARSER_HPP #define MIMEPARSER_HPP #include #include struct MimeType { QString type; QString subtype; QMap parameters; bool is(QString const & type) const; bool is(QString const & type, QString const & sub_type) const; QString parameter(QString const & param_name, QString const & default_value = QString { }) const; bool isValid() const { return not type.isEmpty(); } QString toString(bool full = true) const; }; struct MimeParser { MimeParser() = delete; static MimeType parse(QString const & mime_text); }; #endif // MIMEPARSER_HPP