mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-28 00:17:30 -05:00
Add copy constructor dox
This commit is contained in:
parent
79f766afef
commit
2a31d38613
@ -36,7 +36,14 @@ class QgsRelation
|
||||
Default constructor. Creates an invalid relation.
|
||||
%End
|
||||
~QgsRelation();
|
||||
|
||||
QgsRelation( const QgsRelation &other );
|
||||
%Docstring
|
||||
Copies a relation.
|
||||
This makes a shallow copy, relations are implicitly shared and only duplicated when the copy is
|
||||
changed.
|
||||
%End
|
||||
|
||||
|
||||
static QgsRelation createFromXml( const QDomNode &node, QgsReadWriteContext &context );
|
||||
%Docstring
|
||||
|
@ -95,7 +95,19 @@ class CORE_EXPORT QgsRelation
|
||||
*/
|
||||
QgsRelation();
|
||||
~QgsRelation();
|
||||
|
||||
/**
|
||||
* Copies a relation.
|
||||
* This makes a shallow copy, relations are implicitly shared and only duplicated when the copy is
|
||||
* changed.
|
||||
*/
|
||||
QgsRelation( const QgsRelation &other );
|
||||
|
||||
/**
|
||||
* Copies a relation.
|
||||
* This makes a shallow copy, relations are implicitly shared and only duplicated when the copy is
|
||||
* changed.
|
||||
*/
|
||||
QgsRelation &operator=( const QgsRelation &other );
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user