summaryrefslogtreecommitdiff
path: root/src/xmlpatterns/api/qxmlschema.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/xmlpatterns/api/qxmlschema.cpp')
-rw-r--r--src/xmlpatterns/api/qxmlschema.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/xmlpatterns/api/qxmlschema.cpp b/src/xmlpatterns/api/qxmlschema.cpp
index a05708f..2ce6a57 100644
--- a/src/xmlpatterns/api/qxmlschema.cpp
+++ b/src/xmlpatterns/api/qxmlschema.cpp
@@ -94,6 +94,17 @@ QXmlSchema::QXmlSchema(const QXmlSchema &other)
}
/*!
+ \since 5.4
+ Copies the resources of \a other into this instance, sharing
+ them to the extent possible.
+ */
+QXmlSchema &QXmlSchema::operator =(const QXmlSchema &other)
+{
+ d = other.d;
+ return *this;
+}
+
+/*!
Destroys this QXmlSchema.
*/
QXmlSchema::~QXmlSchema()