31 UIPoint2D(
float x,
float y );
33 bool operator==(
const UIPoint2D& pos )
const;
34 bool operator!=(
const UIPoint2D& pos )
const;
56bool UIPoint2D::operator==(
const UIPoint2D& pos )
const
58 return ( x == pos.x && y == pos.y );
62bool UIPoint2D::operator!=(
const UIPoint2D& pos )
const
64 return ( x != pos.x || y != pos.y );
Definition uipoint2d.h:25