diff options
Diffstat (limited to 'XY.h')
-rw-r--r-- | XY.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -9,5 +9,7 @@ struct XY { XY operator - (const XY &) const; XY& operator += (const XY &); XY& operator -= (const XY &); + bool operator == (const XY& other) const; + bool operator != (const XY& other) const; }; |