X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=uvest.h;h=384e80c3e54102635022b62aec12e4a66ee81289;hp=3eea438a0e1ff6d6a1444785a30765a18b3fb71c;hb=cf9987b67aa49777a4c91c2d21f96e58bf17aa82;hpb=bfbc55964f1977da72c2cea984288a427d370a59 diff --git a/uvest.h b/uvest.h index 3eea438..384e80c 100644 --- a/uvest.h +++ b/uvest.h @@ -12,8 +12,6 @@ /* This class implements the UVEst estimator on two groups. It is used by sharedJAbund and SharedSorensonAbund. */ - -using namespace std; #include "mothur.h" #include "sharedrabundvector.h" @@ -23,7 +21,10 @@ typedef vector EstOutput; /***********************************************************************/ class UVEst { public: - EstOutput getUVest(SharedRAbundVector* shared1, SharedRAbundVector* shared2); + UVEst() { m = MothurOut::getInstance(); } + EstOutput getUVest(vector); + private: + MothurOut* m; }; /***********************************************************************/