// Line.h: interface for the CLine class. #ifndef LINE #define LINE 1 #include "point.h" class CLine { public: CPoint P1; CPoint P2; CLine(); virtual ~CLine(); float CLine::length(); }; #endif