summaryrefslogtreecommitdiffstats
path: root/src/network/ssl/qsslcertificateextension.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/network/ssl/qsslcertificateextension.cpp')
-rw-r--r--src/network/ssl/qsslcertificateextension.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/network/ssl/qsslcertificateextension.cpp b/src/network/ssl/qsslcertificateextension.cpp
index 89b1a929c8..8a4e7409bf 100644
--- a/src/network/ssl/qsslcertificateextension.cpp
+++ b/src/network/ssl/qsslcertificateextension.cpp
@@ -138,15 +138,24 @@ QSslCertificateExtension::QSslCertificateExtension()
{
}
+/*!
+ Constructs a copy of \a other.
+ */
QSslCertificateExtension::QSslCertificateExtension(const QSslCertificateExtension &other)
: d(other.d)
{
}
+/*!
+ Destroys the extension.
+ */
QSslCertificateExtension::~QSslCertificateExtension()
{
}
+/*!
+ Assigns \a other to this extension and returns a reference to this extension.
+ */
QSslCertificateExtension &QSslCertificateExtension::operator=(const QSslCertificateExtension &other)
{
d = other.d;