source: trunk/IPs/systemC/Environment/Cache/src/Cache_information.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: 333 bytes
Line 
1#include "../include/Cache.h"
2#include <sstream>
3
4namespace environment {
5namespace cache {
6
7  std::string Cache::information (uint32_t depth)
8  {
9    std::string tab(depth,'\t');
10    std::stringstream output;
11   
12    output << tab << "<" << name << ">" << std::endl
13           << param->print(depth);
14
15    return output.str();
16  }
17
18};
19};
Note: See TracBrowser for help on using the repository browser.