#include #include #include #include #include #include #include "gen_qsslerror.h" #ifndef _Bool #define _Bool bool #endif #include "_cgo_export.h" QSslError* QSslError_new() { return new QSslError(); } QSslError* QSslError_new2(int error) { return new QSslError(static_cast(error)); } QSslError* QSslError_new3(int error, QSslCertificate* certificate) { return new QSslError(static_cast(error), *certificate); } QSslError* QSslError_new4(QSslError* other) { return new QSslError(*other); } void QSslError_Swap(QSslError* self, QSslError* other) { self->swap(*other); } void QSslError_OperatorAssign(QSslError* self, QSslError* other) { self->operator=(*other); } bool QSslError_OperatorEqual(const QSslError* self, QSslError* other) { return (*self == *other); } bool QSslError_OperatorNotEqual(const QSslError* self, QSslError* other) { return (*self != *other); } int QSslError_Error(const QSslError* self) { QSslError::SslError _ret = self->error(); return static_cast(_ret); } struct miqt_string QSslError_ErrorString(const QSslError* self) { QString _ret = self->errorString(); // Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory QByteArray _b = _ret.toUtf8(); struct miqt_string _ms; _ms.len = _b.length(); _ms.data = static_cast(malloc(_ms.len)); memcpy(_ms.data, _b.data(), _ms.len); return _ms; } QSslCertificate* QSslError_Certificate(const QSslError* self) { return new QSslCertificate(self->certificate()); } void QSslError_Delete(QSslError* self, bool isSubclass) { if (isSubclass) { delete dynamic_cast( self ); } else { delete self; } }