X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=venn.h;h=50d49d1b98c4c364faed44366534daf91d017b55;hb=791f42d21a85f794529fd4c912dcc27d873c25e8;hp=cf6a5ee332fbe2d70e3b5d1c2066c59db5ebb107;hpb=315e38cf393c82be238da5b32574f225a020d25c;p=mothur.git diff --git a/venn.h b/venn.h index cf6a5ee..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(string); + 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, outputDir; + string groupComb, outputDir, inputfile; ofstream outsvg; + MothurOut* m; + bool nseqs; + int fontSize; }; /***********************************************************************/