summaryrefslogtreecommitdiff
path: root/libs/canvas/canvas/types.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/canvas/canvas/types.h')
-rw-r--r--libs/canvas/canvas/types.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/libs/canvas/canvas/types.h b/libs/canvas/canvas/types.h
index 1e8b7b145f..2800ccc91b 100644
--- a/libs/canvas/canvas/types.h
+++ b/libs/canvas/canvas/types.h
@@ -64,6 +64,7 @@ struct LIBCANVAS_API Duple
extern LIBCANVAS_API Duple operator- (Duple const &);
extern LIBCANVAS_API Duple operator+ (Duple const &, Duple const &);
extern LIBCANVAS_API bool operator== (Duple const &, Duple const &);
+extern LIBCANVAS_API bool operator!= (Duple const &, Duple const &);
extern LIBCANVAS_API Duple operator- (Duple const &, Duple const &);
extern LIBCANVAS_API Duple operator/ (Duple const &, double);
extern LIBCANVAS_API std::ostream & operator<< (std::ostream &, Duple const &);
@@ -106,6 +107,8 @@ struct LIBCANVAS_API Rect
}
};
+extern LIBCANVAS_API bool operator!= (Rect const &, Rect const &);
+
extern LIBCANVAS_API std::ostream & operator<< (std::ostream &, Rect const &);
typedef std::vector<Duple> Points;