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