00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00020 00025 #ifndef _LINE_H_ 00026 #define _LINE_H_ 00027 00028 #include "Point.h" 00029 00030 namespace DelaunayTest 00031 { 00032 00035 class Line 00036 { 00037 public: 00039 Point m_start; 00040 00042 Point m_end; 00043 00047 Line(const Point& start, const Point& end); 00048 00050 ~Line(void); 00051 00052 }; 00053 00054 } 00055 00056 #endif