X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=heatmap.h;h=ffbe94675df2dc8b968134ad79ffc7307bb1d458;hb=8ef6687c1f586285d01c000cc5e359bf9c07c717;hp=29b6b9af302cf24b079f153eb75f993e0e83be21;hpb=d59f91eb1230d2c7867a92cb86138b7003100ab4;p=mothur.git diff --git a/heatmap.h b/heatmap.h index 29b6b9a..ffbe946 100644 --- a/heatmap.h +++ b/heatmap.h @@ -9,8 +9,6 @@ * */ -using namespace std; - #include "rabundvector.hpp" #include "sharedrabundvector.h" #include "datavector.hpp" @@ -21,19 +19,20 @@ using namespace std; class HeatMap { public: - HeatMap(); + HeatMap(string, string, string); ~HeatMap(){}; - void getPic(RAbundVector*); - void getPic(vector); + string getPic(RAbundVector*); + string getPic(vector); private: void sortSharedVectors(vector& ); void printLegend(int, float); GlobalData* globaldata; - string format, sorted, groupComb, scaler; + string format, sorted, groupComb, scaler, outputDir; ofstream outsvg; + MothurOut* m; };