/home/martin/workspace/OpenStreetNav/src/geoelements/Edge.h
Go to the documentation of this file.
00001 /*
00002  * Edge.h
00003  *
00004  *  Created on: Nov 28, 2011
00005  *      Author: martin
00006  */
00007 
00008 #ifndef GEO_EDGE_H_
00009 #define GEO_EDGE_H_
00010 
00011 #include "Point.h"
00012 
00013 namespace geo
00014 {
00015 
00016 class Edge
00017 {
00018 public:
00019     Edge(Point const& st, Point const& en);
00020     Point start;
00021     Point end;
00022     bool operator==(Edge const& other);
00023     bool operator!=(Edge const& other);
00024 };
00025 
00026 } /* namespace geo */
00027 #endif /* EDGE_H_ */
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines