00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00020 00025 00026 #ifndef _LINE_H_ 00027 #define _LINE_H_ 00028 00029 #include "Point.h" 00030 00031 namespace GpuQuadraticCurveRender 00032 { 00033 00034 class Line 00035 { 00036 public: 00037 Point m_start; 00038 00039 Point m_end; 00040 00041 Line(const Point& start, const Point& end); 00042 00043 ~Line(void); 00044 00045 }; 00046 00047 } 00048 00049 #endif