source: trunk/IPs/systemC/Environment/Cache/src/Cache_OneLevel_information.cpp @ 114

Last change on this file since 114 was 81, checked in by rosiere, 16 years ago
  • Finish Environment (and test)
  • Continue predictor_unit
  • Add external tools
  • svn keyword "Id" set
  • Property svn:keywords set to Id
File size: 380 bytes
Line 
1#include "../include/Cache_OneLevel.h"
2#include <sstream>
3
4namespace environment {
5namespace cache {
6namespace cache_onelevel {
7
8  std::string Cache_OneLevel::information (uint32_t depth)
9  {
10    std::string tab(depth,'\t');
11    std::stringstream output;
12   
13    output << tab << "<" << name << ">" << std::endl
14           << param->print(depth);
15
16    return output.str();
17  }
18};
19};
20};
Note: See TracBrowser for help on using the repository browser.