X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=venn.h;h=db26b272045458540cfb4ab7ca2f44bd563ba4bc;hp=8a789c364ac9e6e25bb0bc0312994e4c0e319d34;hb=cf9987b67aa49777a4c91c2d21f96e58bf17aa82;hpb=74c78f9abd9e733f0c2f812efec97a76632fcbf8 diff --git a/venn.h b/venn.h index 8a789c3..db26b27 100644 --- a/venn.h +++ b/venn.h @@ -12,29 +12,28 @@ #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