#ifndef LINEH #define LINEH #include "point.h" struct line { point A; point B; line(const point& A, const point& B): A(A), B(B) {} }; #endif