#include "Cache.h"Go to the source code of this file.
Functions | |
| ostream & | operator<< (ostream &stream, const Cache &cache) |
|
||||||||||||
|
Definition at line 20 of file Cache.cxx. References Process::AsString(). 00021 {
00022 map<int, CacheBuffer *>::const_iterator buf_iter;
00023 for(buf_iter = cache.fCache.begin(); buf_iter != cache.fCache.end(); ++buf_iter) {
00024 stream << "**** " << Process::AsString( (Process::Process_t) buf_iter->first) << endl;
00025 stream << *(buf_iter->second);
00026 }
00027 stream << endl;
00028 return stream;
00029 }
|
1.3.9.1