aboutsummaryrefslogtreecommitdiffstats
path: root/tests/libsample/point.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/libsample/point.h')
-rw-r--r--tests/libsample/point.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/libsample/point.h b/tests/libsample/point.h
index 585f94991..cfd1f251d 100644
--- a/tests/libsample/point.h
+++ b/tests/libsample/point.h
@@ -52,6 +52,8 @@ public:
inline void setX(double x) { m_x = x; }
inline void setY(double y) { m_y = y; }
+ inline void setXAsUint(unsigned int x) { m_x = x; }
+ inline void setYAsUint(unsigned int y) { m_y = y; }
Point* copy() const;