From 2f4efa8a787d175807a40b5bbafb1197e4dcc318 Mon Sep 17 00:00:00 2001 From: Martin Owens Date: Fri, 30 Nov 2012 14:22:44 -0500 Subject: Step 1. Remove junk and keep functionality. (bzr r11894.1.1) --- src/connection-points.cpp | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 src/connection-points.cpp (limited to 'src/connection-points.cpp') diff --git a/src/connection-points.cpp b/src/connection-points.cpp deleted file mode 100644 index 9ed98d211..000000000 --- a/src/connection-points.cpp +++ /dev/null @@ -1,37 +0,0 @@ -#include "connection-points.h" - - -bool ConnectionPoint::operator!=(ConnectionPoint& cp) -{ - return (id!=cp.id || type!=cp.type || dir!=cp.dir || pos!=cp.pos); -} - -bool ConnectionPoint::operator==(ConnectionPoint& cp) -{ - return (id==cp.id && type==cp.type && dir==cp.dir && pos==cp.pos); -} - - -namespace Inkscape{ - -SVGIStringStream& -operator>>(SVGIStringStream& istr, ConnectionPoint& cp) -{ - istr>>cp.id>>cp.dir>>cp.pos[Geom::X]>>cp.pos[Geom::Y]; - - return istr; -} - -SVGOStringStream& -operator<<(SVGOStringStream& ostr, const ConnectionPoint& cp) -{ - ostr<