ADTF_DISPLAY_TOOLBOX  3.8.0 (ADTF 3.14.3)
IPointabstract

Point Interface. More...

Inheritance diagram for IPoint:
[legend]

Public Member Functions

virtual ~IPoint ()
 virtual destructor to ensure proper cleanup.
 
virtual tVoid Release ()=0
 Releases this point. More...
 
virtual tInt GetX () const =0
 Returns the x value. More...
 
virtual tVoid SetX (tInt xValue)=0
 Sets the x value. More...
 
virtual tInt GetY () const =0
 Return the y value. More...
 
virtual tVoid SetY (tInt yValue)=0
 Sets the y value. More...
 

Detailed Description

Point Interface.

Definition at line 25 of file point_intf.h.

Member Function Documentation

◆ GetX()

virtual tInt GetX ( ) const
pure virtual

Returns the x value.

Returns
x value

Implemented in cPoint.

◆ GetY()

virtual tInt GetY ( ) const
pure virtual

Return the y value.

Returns
y value

Implemented in cPoint.

◆ Release()

virtual tVoid Release ( )
pure virtual

Releases this point.

Returns
void

Implemented in cPoint.

◆ SetX()

virtual tVoid SetX ( tInt  xValue)
pure virtual

Sets the x value.

Parameters
[in]xValuex value to set
Returns
void

Implemented in cPoint.

◆ SetY()

virtual tVoid SetY ( tInt  yValue)
pure virtual

Sets the y value.

Parameters
[in]yValuey value to set
Returns
void

Implemented in cPoint.