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