X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=validcalculator.h;h=ff93c58ccc980684ae52f48b08cac9d380cf7a88;hb=74c78f9abd9e733f0c2f812efec97a76632fcbf8;hp=1c39d49253f6f138cbd27523a2fbb86b675e02a5;hpb=f20505bcd9f07e0b5f967be0e8d414076d9a5678;p=mothur.git diff --git a/validcalculator.h b/validcalculator.h index 1c39d49..ff93c58 100644 --- a/validcalculator.h +++ b/validcalculator.h @@ -9,7 +9,6 @@ * Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved. * */ -using namespace std; #include "mothur.h" @@ -23,6 +22,7 @@ class ValidCalculators { ValidCalculators(); ~ValidCalculators(); bool isValidCalculator(string, string); + void printCalc(string, ostream&); private: map single; @@ -33,6 +33,10 @@ class ValidCalculators { map sharedsummary; map vennsingle; map vennshared; + map treegroup; + map matrix; + map boot; + map distance; map::iterator it; void initialSingle(); @@ -43,7 +47,10 @@ class ValidCalculators { void initialSharedSummary(); void initialVennSingle(); void initialVennShared(); - + void initialTreeGroups(); + void initialMatrix(); + void initialBoot(); + void initialDistance(); }; #endif