]> git.donarmstrong.com Git - mothur.git/blobdiff - fullmatrix.h
created mothurOut class to handle logfiles
[mothur.git] / fullmatrix.h
index 7cb8b15fedf8c39f06aeaee5ca3fb6e9f3274499..15fee6e04a97416f3ad734c4f81fe75a6eb598ec 100644 (file)
@@ -23,7 +23,7 @@ struct Names {
 class FullMatrix {
        
 public:
-       FullMatrix(){};
+       FullMatrix(){ m = MothurOut::getInstance(); }
        FullMatrix(ifstream&);
        ~FullMatrix(){};
        
@@ -53,6 +53,7 @@ private:
        int numGroups;
        int numUserGroups;
        GlobalData* globaldata;
+       MothurOut* m;
 };
 
 #endif