| 31 | MemoryUsage & operator= (MemoryUsage &&) = default; |
| 32 | |
| 33 | void AddName (const string & aname) { name += aname; } |
| 34 | const string & Name() const { return name; } |
| 35 | size_t NBytes () const { return nbytes; } |
| 36 | size_t NBlocks () const { return nblocks; } |
no outgoing calls
no test coverage detected