Main Page | Modules | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | File Members | Related Pages

Cache.cxx File Reference

#include "Cache.h"

Go to the source code of this file.

Functions

ostream & operator<< (ostream &stream, const Cache &cache)


Function Documentation

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 }


Generated on Mon Feb 15 11:07:54 2010 for loon by  doxygen 1.3.9.1