/*
Name: Mr. Merlis
Date: 12/5/2007
Header for the Point Class
*/
#include <iostream>
using namespace std;
class Point
{
private:
int x;
int y;
public:
Point(); // default constructor
Point(int, int); //
void setX(int);
void setY(int);
void setCoordinates(int, int);
void promptPoint(); // asks the user for a pt
void printPoint(); // prints the point
string quadrant(); // return the quadrant of the pt
};