]> git.donarmstrong.com Git - mothur.git/blobdiff - mothurout.h
working on sffinfo command.
[mothur.git] / mothurout.h
index ac1ec3fd402af357cc956a816df8de6dc27f9e29..bf356ae285fba010f41f2bbc51b9ce093ead1b1b 100644 (file)
@@ -2,7 +2,7 @@
 #define MOTHUROUT_H
 
 /*
- *  m->mothurOut.h
+ *  mothurOut.h
  *  Mothur
  *
  *  Created by westcott on 2/25/10.
@@ -24,18 +24,22 @@ class MothurOut {
                void mothurOutEndLine();
                void mothurOutJustToLog(string);
                void errorOut(exception&, string, string);
+               void closeLog();
+
                int control_pressed;
-               
+               bool executing;
 
        private:
                static MothurOut* _uniqueInstance;
                MothurOut( const MothurOut& ); // Disable copy constructor
                void operator=( const MothurOut& ); // Disable assignment operator
-               MothurOut() {};
+               MothurOut() { control_pressed = false; };
                ~MothurOut();
 
                string logFileName;
                ofstream out;
+               
+               int mem_usage(double&, double&);
 
 };
 /***********************************************/