1 #ifndef ANDERBERG_H
2 #define ANDERBERG_H
3 /*
4  *  sharedanderberg.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 Anderberg : public Calculator  {
17 
18 	public:
Anderberg()19 		Anderberg() :  Calculator("anderberg", 1, false) {};
getValues(SAbundVector *)20 		EstOutput getValues(SAbundVector*) {return data;};
21 		EstOutput getValues(vector<SharedRAbundVector*>);
getCitation()22 		string getCitation() { return "http://www.mothur.org/wiki/Anderberg"; }
23 	private:
24 
25 };
26 
27 /***********************************************************************/
28 
29 #endif
30