#ifndef Point_h #define Point_h #include class Point { public : Point(); Point(int _x, int _y); public : float x, y; }; #endif