X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=venn.h;h=50d49d1b98c4c364faed44366534daf91d017b55;hb=79a7d3273749b08d4f9f8dfe350c964ff0c4351e;hp=33935e6a2c9496fd984b8328cf33326dbeb23fa1;hpb=61798fe609675abfedf511e542cc48c56a531199;p=mothur.git diff --git a/venn.h b/venn.h index 33935e6..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,19 +19,19 @@ class Venn { public: - Venn(string, bool); + Venn(string, bool, string, int); ~Venn(){}; vector getPic(SAbundVector*, vector); vector getPic(vector, vector); private: - GlobalData* globaldata; Calculator* singleCalc; - string groupComb, outputDir; + string groupComb, outputDir, inputfile; ofstream outsvg; MothurOut* m; bool nseqs; + int fontSize; }; /***********************************************************************/