]> git.donarmstrong.com Git - mothur.git/blob - structkulczynski.h
added odum, canberra, structchi2, structchord, structeuclidean, gower, hellinger...
[mothur.git] / structkulczynski.h
1 #ifndef STRUCTKULCZYNSKI_H
2 #define STRUCTKULCZYNSKI_H
3
4 /*
5  *  structkulczynski.h
6  *  Mothur
7  *
8  *  Created by westcott on 12/15/10.
9  *  Copyright 2010 Schloss Lab. All rights reserved.
10  *
11  */
12
13
14 #include "calculator.h"
15
16 /***********************************************************************/
17
18 class StructKulczynski : public Calculator  {
19         
20 public:
21         StructKulczynski() :  Calculator("structkulczynski", 1, false) {};
22         EstOutput getValues(SAbundVector*) {return data;};
23         EstOutput getValues(vector<SharedRAbundVector*>);
24 private:
25         
26 };
27
28 /***********************************************************************/
29
30 #endif
31
32
33