#ifndef CLASS_LINE #define CLASS_LINE #include "Point.h" /* * =========================================================================== * Line Class Definition * =========================================================================== */ class Line { public: Line(const Point& vStart, const Point& vEnd); Line(const Line& pSrc); ~Line(); private: Point mStart; Point mEnd; }; #endif