Notes:
example
class point { int xPosition; int yPosition; colorType color; public: ... void move (int x, int y) {... void setColor (colorType c) {... }
Point myPoint; myPoint.move (10, 15); myPoint.setColor (blue);