00001 /* 00002 * FlatPoint.h 00003 * 00004 * Created on: Nov 12, 2011 00005 * Author: martin 00006 */ 00007 00008 #ifndef FLATPOINT_H_ 00009 #define FLATPOINT_H_ 00010 00011 namespace proj 00012 { 00013 00014 struct FlatPoint 00015 { 00016 public: 00017 FlatPoint(double x = 0, double y = 0); 00018 double x; 00019 double y; 00020 bool operator==(FlatPoint const& other); 00021 bool operator!=(FlatPoint const& other); 00022 }; 00023 00024 } /* namespace geo */ 00025 #endif /* FLATPOINT_H_ */