source: trunk/IPs/systemC/Environment/Cache/src/Cache_MultiLevel_print.cpp @ 80

Last change on this file since 80 was 80, checked in by rosiere, 16 years ago

Oups, Environnement is french :P

File size: 384 bytes
Line 
1#include "../include/Cache_MultiLevel.h"
2
3namespace environment {
4namespace cache {
5namespace cache_multilevel {
6
7  std::ostream& operator<< (std::ostream& output, Cache_MultiLevel & x)
8  {
9    output << x.information(0) << std::endl;
10
11     for (uint32_t i=0; i<x.param->nb_level; i++)
12      {
13        output << *(x.hierarchy_cache[i]) << std::endl;
14      }
15
16    return output;
17  }
18};
19};
20};
Note: See TracBrowser for help on using the repository browser.