summaryrefslogtreecommitdiff
path: root/include/basegfx/tuple/b2ituple.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/basegfx/tuple/b2ituple.hxx')
-rw-r--r--include/basegfx/tuple/b2ituple.hxx20
1 files changed, 0 insertions, 20 deletions
diff --git a/include/basegfx/tuple/b2ituple.hxx b/include/basegfx/tuple/b2ituple.hxx
index 7c859d5def55..f8df10fe2851 100644
--- a/include/basegfx/tuple/b2ituple.hxx
+++ b/include/basegfx/tuple/b2ituple.hxx
@@ -66,19 +66,6 @@ namespace basegfx
mnY( fY )
{}
- /** Create a copy of a 2D Tuple
-
- @param rTup
- The 2D Tuple which will be copied.
- */
- B2ITuple(const B2ITuple& rTup)
- : mnX( rTup.mnX ),
- mnY( rTup.mnY )
- {}
-
- ~B2ITuple()
- {}
-
/// Get X-Coordinate of 2D Tuple
sal_Int32 getX() const
{
@@ -185,13 +172,6 @@ namespace basegfx
{
return !(*this == rTup);
}
-
- B2ITuple& operator=( const B2ITuple& rTup )
- {
- mnX = rTup.mnX;
- mnY = rTup.mnY;
- return *this;
- }
};
// external operators