X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=venn.h;h=50d49d1b98c4c364faed44366534daf91d017b55;hb=529ec122f7cac4af987e121d150b878d7c7a0d5d;hp=8902cf4c9298dfe7df40b6739445cc494ebce3eb;hpb=cd37904452dc95b183ff313ff05720c562902487;p=mothur.git diff --git a/venn.h b/venn.h index 8902cf4..50d49d1 100644 --- a/venn.h +++ b/venn.h @@ -12,7 +12,6 @@ #include "sabundvector.hpp" #include "sharedrabundvector.h" #include "datavector.hpp" -#include "globaldata.hpp" #include "calculator.h" @@ -20,17 +19,19 @@ class Venn { public: - Venn(); + Venn(string, bool, string, int); ~Venn(){}; - void getPic(SAbundVector*, vector); - void getPic(vector, vector); + vector getPic(SAbundVector*, vector); + vector getPic(vector, vector); private: - GlobalData* globaldata; Calculator* singleCalc; - string groupComb; + string groupComb, outputDir, inputfile; ofstream outsvg; + MothurOut* m; + bool nseqs; + int fontSize; }; /***********************************************************************/