Add operator== for rectangles.
authordooglus <dooglus@1f10aa63-cdf2-0310-b900-c93c546f37ac>
Wed, 23 Jan 2008 14:44:12 +0000 (14:44 +0000)
committerdooglus <dooglus@1f10aa63-cdf2-0310-b900-c93c546f37ac>
Wed, 23 Jan 2008 14:44:12 +0000 (14:44 +0000)
git-svn-id: http://svn.voria.com/code@1426 1f10aa63-cdf2-0310-b900-c93c546f37ac

synfig-core/trunk/src/synfig/rect.h

index b620575..b6894c9 100644 (file)
@@ -168,6 +168,8 @@ public:
 
        bool operator&&(const Rect& rhs)const { return etl::intersect(*this, rhs); }
 
+       bool operator==(const Rect &rhs)const { return get_min() == rhs.get_min() && get_max() == rhs.get_max(); }
+
        bool is_valid()const { return valid(); }
 }; // END of class Rect