#ifndef location_h #define location_h class Location { public: Location(){x=0;y=0;} int x; int y; }; #endif