summaryrefslogtreecommitdiff
path: root/include/drawinglayer/geometry
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-08-25 13:16:54 +0200
committerNoel Grandin <noel@peralex.com>2016-08-25 13:34:46 +0200
commitb9ab0dd3e5eb3c948ee9a29006637e48d5751a5e (patch)
tree7e07b3d44bffc758c920216a0fa9194b90741a32 /include/drawinglayer/geometry
parent3d8154789bca1f5a0901859e23bf5e4b458af1ff (diff)
cid#1371276 Missing move assignment operator
also cid#1371234, cid#1371249, cid#1371208, cid#1371250, cid#1371258, cid#1371266, cid#1371257, cid#1371221 Change-Id: I18d952887b684e1999d003cec0f668789c851b52
Diffstat (limited to 'include/drawinglayer/geometry')
-rw-r--r--include/drawinglayer/geometry/viewinformation2d.hxx3
-rw-r--r--include/drawinglayer/geometry/viewinformation3d.hxx3
2 files changed, 6 insertions, 0 deletions
diff --git a/include/drawinglayer/geometry/viewinformation2d.hxx b/include/drawinglayer/geometry/viewinformation2d.hxx
index cb76998e69a8..08ec2597296e 100644
--- a/include/drawinglayer/geometry/viewinformation2d.hxx
+++ b/include/drawinglayer/geometry/viewinformation2d.hxx
@@ -114,11 +114,14 @@ namespace drawinglayer
/// copy constructor
ViewInformation2D(const ViewInformation2D& rCandidate);
+ ViewInformation2D(ViewInformation2D&& rCandidate);
+
/// destructor
~ViewInformation2D();
/// assignment operator
ViewInformation2D& operator=(const ViewInformation2D& rCandidate);
+ ViewInformation2D& operator=(ViewInformation2D&& rCandidate);
/// compare operators
bool operator==(const ViewInformation2D& rCandidate) const;
diff --git a/include/drawinglayer/geometry/viewinformation3d.hxx b/include/drawinglayer/geometry/viewinformation3d.hxx
index e35d0bf346a1..4d2f82652741 100644
--- a/include/drawinglayer/geometry/viewinformation3d.hxx
+++ b/include/drawinglayer/geometry/viewinformation3d.hxx
@@ -119,6 +119,8 @@ namespace drawinglayer
/// copy constructor
ViewInformation3D(const ViewInformation3D& rCandidate);
+ ViewInformation3D(ViewInformation3D&& rCandidate);
+
/// destructor
~ViewInformation3D();
@@ -127,6 +129,7 @@ namespace drawinglayer
/// assignment operator
ViewInformation3D& operator=(const ViewInformation3D& rCandidate);
+ ViewInformation3D& operator=(ViewInformation3D&& rCandidate);
/// compare operators
bool operator==(const ViewInformation3D& rCandidate) const;