#include <stdlib.h>
#include <time.h>
#include <string.h>
#include <iostream>
#include <iomanip>
#include "infolines.h"
Include dependency graph for infolines.cxx:
Go to the source code of this file.
Functions | |
ostream & | operator<< (ostream &out, const MemUsage &memu) |
ostream & | operator<< (ostream &out, const SysInfo &si) |
|
Definition at line 114 of file infolines.cxx.
|
|
Definition at line 104 of file infolines.cxx.
00105 { 00106 //out << "# Memory usage : " << setw(7) << memu.getPeakMem() << "Mb (peak) " 00107 // << setw(4) << memu.getEstimate() << "Mb (estimate)" << endl; 00108 out << "# Memory usage : " << setw(7) << memu.getEstimate() 00109 << "Mb (estimate)" << endl; 00110 return out; 00111 } |