Feature.h

Go to the documentation of this file.
00001 #ifndef FEATURE_H_
00002 #define FEATURE_H_
00003 
00004 
00005 
00006 namespace damina
00007 {
00008         
00019         class Feature
00020         {
00021                 private:
00025                         int index;
00026                         
00030                         double value;
00031                 
00032                 public:
00033                         virtual void set(int, double);
00034                         virtual int getIndex();
00035                         virtual double getValue();
00036                         
00037                         Feature(int, double);
00038                         virtual ~Feature();
00039         };
00040 
00041 }
00042 
00043 #endif /*FEATURE_H_*/

Generated on Mon Sep 24 22:26:48 2007 for SVClustering by  doxygen 1.5.2