]> git.donarmstrong.com Git - mothur.git/blob - sharedbraycurtis.h
removed "shared" from some of the calculator names and classes
[mothur.git] / sharedbraycurtis.h
1 #ifndef BRAYCURTIS_H
2 #define BRAYCURTIS_H
3 /*
4  *  sharedbraycurtis.h
5  *  Mothur
6  *
7  *  Created by Sarah Westcott on 3/24/09.
8  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
9  *
10  */
11 #include "calculator.h"
12
13 /***********************************************************************/
14
15 class BrayCurtis : public Calculator  {
16         
17 public:
18         BrayCurtis() :  Calculator("BrayCurtis", 1) {};
19         EstOutput getValues(SAbundVector*) {return data;};
20         EstOutput getValues(SharedRAbundVector*, SharedRAbundVector*);
21 private:
22         
23 };
24
25 /***********************************************************************/
26
27
28
29 #endif