1 #ifndef SMITHWILSON
2 #define SMITHWILSON
3 
4 /*
5  *  smithwilson.h
6  *  Mothur
7  *
8  *  Created by Pat Schloss on 8/21/10.
9  *  Copyright 2010 Schloss Lab. All rights reserved.
10  *
11  */
12 
13 #include "calculator.h"
14 
15 /***********************************************************************/
16 
17 class SmithWilson : public Calculator  {
18 
19 public:
SmithWilson()20 	SmithWilson() : Calculator("smithwilson", 1, false) {};
21 	EstOutput getValues(SAbundVector*);
getValues(vector<SharedRAbundVector * >)22 	EstOutput getValues(vector<SharedRAbundVector*>) {return data;};
getCitation()23 	string getCitation() { return "http://www.mothur.org/wiki/Smithwilson"; }
24 };
25 
26 /***********************************************************************/
27 
28 #endif
29