BICO  1.0
 All Classes Namespaces Files Functions Variables Typedefs Pages
cfrentry.h
Go to the documentation of this file.
1 #ifndef CFRENTRY_H
2 #define CFRENTRY_H
3 
4 #include "cfentry.h"
5 
6 namespace CluE
7 {
8 
17 template<typename T> struct CFREntry : CFEntry<T>
18 {
19  CFREntry(size_t number, T ls, double ss, T representative);
20  void insertWeighted(T const & x);
21 
23 };
24 
25 template<typename T> CFREntry<T>::CFREntry(size_t number, T ls, double ss, T representative) :
26  CFEntry<T>(number, ls, ss),
27  representative(representative)
28 {
29 }
30 
31 }
32 
33 #endif