BICO  1.0
 All Classes Namespaces Files Functions Variables Typedefs Pages
weightedobject.h
Go to the documentation of this file.
1 #ifndef WEIGHTEDOBJECT_H
2 #define WEIGHTEDOBJECT_H
3 
4 namespace CluE
5 {
6 
11 {
12 public:
13  virtual double getWeight() const = 0;
14  virtual void setWeight(double w) = 0;
15 };
16 
17 }
18 
19 #endif