X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=venn.h;h=db26b272045458540cfb4ab7ca2f44bd563ba4bc;hb=1a968f34ae2d2680eaf189a197d1a21b8dfd6c03;hp=35c1d1cbbe6d71663fa345bc97856c6194a6fda5;hpb=d59f91eb1230d2c7867a92cb86138b7003100ab4;p=mothur.git diff --git a/venn.h b/venn.h index 35c1d1c..db26b27 100644 --- a/venn.h +++ b/venn.h @@ -9,34 +9,31 @@ * */ -using namespace std; - #include "sabundvector.hpp" #include "sharedrabundvector.h" #include "datavector.hpp" -#include "globaldata.hpp" #include "calculator.h" /***********************************************************************/ class Venn { - - public: - Venn(); - ~Venn(){}; - - void getPic(SAbundVector*, vector); - void getPic(vector, vector); - - private: - GlobalData* globaldata; - Calculator* singleCalc; - string format, groupComb; - ofstream outsvg; - - +public: + Venn(string, bool, string, int, bool); + ~Venn(){}; + + vector getPic(SAbundVector*, vector); + vector getPic(vector, vector); + +private: + Calculator* singleCalc; + string groupComb, outputDir, inputfile; + ofstream outsvg; + MothurOut* m; + bool nseqs, sharedOtus; + int fontSize; }; + /***********************************************************************/ #endif