00001 #ifndef _VOROPOINT_H_ 00002 #define _VOROPOINT_H_ 00003 00004 #define INTPOINT IntPoint 00005 00007 class IntPoint { 00008 public: 00009 IntPoint() : x(0), y(0) {} 00010 IntPoint(int _x, int _y) : x(_x), y(_y) {} 00011 int x,y; 00012 }; 00013 00014 #endif