Main Page | Namespace List | Compound List | File List | Compound Members | File Members

Point.h

Go to the documentation of this file.
00001 #ifndef POINT_H_
00002 #define POINT_H_
00003 
00004 class Point {
00005 
00006  public:
00007   Point();
00008   Point(double xIn, double yIn);
00009   ~Point();
00010 
00012   void setX(double x);
00013 
00015   void setY(double y);
00016 
00018   double getX();
00019 
00021   double getY();
00022   
00023  private:
00024   double x, y;
00025 };
00026 
00027 #endif

Generated on Thu Sep 4 14:59:31 2003 for Content-Based Image Retrieval by doxygen 1.3.3