]> git.donarmstrong.com Git - mothur.git/blobdiff - canberra.h
Revert to previous commit
[mothur.git] / canberra.h
diff --git a/canberra.h b/canberra.h
new file mode 100644 (file)
index 0000000..483d119
--- /dev/null
@@ -0,0 +1,33 @@
+#ifndef CANBERRA_H
+#define CANBERRA_H
+
+/*
+ *  canberra.h
+ *  Mothur
+ *
+ *  Created by westcott on 12/14/10.
+ *  Copyright 2010 Schloss Lab. All rights reserved.
+ *
+ */
+
+
+
+#include "calculator.h"
+
+/***********************************************************************/
+
+class Canberra : public Calculator  {
+       
+public:
+       Canberra() :  Calculator("canberra", 1, false) {};
+       EstOutput getValues(SAbundVector*) {return data;};
+       EstOutput getValues(vector<SharedRAbundVector*>);
+       string getCitation() { return "http://www.mothur.org/wiki/Canberra"; }
+private:
+       
+};
+
+/***********************************************************************/
+
+#endif
+