Rev 10 | Go to most recent revision | Details | Last modification | View Log | RSS feed
struct point
{
public:
point(int x, int y);
~point();
int X;
int Y;
}