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

Points.h

Go to the documentation of this file.
00001 #ifndef POINTS_H_
00002 #define POINTS_H_
00003 
00004 #include <vector>
00005 #include "Point.h"
00006 using namespace std;
00007 
00008 
00009 class Points {
00010 
00011  public:
00012   Points();
00013   ~Points();
00014 
00016   void addPoint(Point p);
00017 
00019   Point getFirstPoint();
00020 
00022   Point getNextPoint();
00023 
00024  private:
00025   vector<Point>::iterator i;
00026   vector<Point> v;
00027 };
00028 
00029 #endif

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