X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=formatmatrix.h;h=7e7a99c1dbcf4bf495ad7b1a7c7caec49bef3e90;hb=e339f9008daa7d37c9a9034829565620a6abe783;hp=4ef36d95d6d8e11db5bf065a755fd0292e809c17;hpb=832d53a9dfac6b1795735eec643d8cf627b0d8e3;p=mothur.git diff --git a/formatmatrix.h b/formatmatrix.h index 4ef36d9..7e7a99c 100644 --- a/formatmatrix.h +++ b/formatmatrix.h @@ -57,10 +57,10 @@ class FormatMatrix { public: - FormatMatrix(){ } + FormatMatrix(){ m = MothurOut::getInstance(); } virtual ~FormatMatrix() {} - virtual void read(NameAssignment*){}; + virtual int read(NameAssignment*){ return 1; } void setCutoff(float c) { cutoff = c; } ListVector* getListVector() { return list; } @@ -72,6 +72,7 @@ protected: float cutoff; string distFile; vector rowPos; + MothurOut* m; }; //**********************************************************************************************************************