00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00020 00025 #ifndef _POINT_H_ 00026 #define _POINT_H_ 00027 00028 namespace DelaunayTest 00029 { 00030 00032 class Point 00033 { 00034 public: 00036 float m_x; 00037 00039 float m_y; 00040 00042 Point(void); 00043 00047 Point(float x, float y); 00048 00050 ~Point(void); 00051 }; 00052 00053 } 00054 00055 #endif