source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/RegisterFile/RegisterFile_Multi_Banked/src/Statistics_print_body.cpp @ 53

Last change on this file since 53 was 53, checked in by rosiere, 17 years ago
  • Banc de registre multi banc
  • Banc de registre générique.
File size: 844 bytes
Line 
1#ifdef STATISTICS
2/*
3 * $Id$
4 *
5 * [ Description ]
6 *
7 */
8
9#include "Behavioural/Generic/RegisterFile/RegisterFile_Multi_Banked/include/Statistics.h"
10
11#include <sstream>
12using namespace std;
13
14namespace morpheo                    {
15namespace behavioural {
16namespace generic {
17namespace registerfile {
18namespace registerfile_multi_banked {
19
20
21  string Statistics::print_body (uint32_t depth)
22  {
23    log_printf(FUNC,RegisterFile_Multi_Banked,"print_body","Begin");
24
25    string        tab = string(depth,'\t');
26    ostringstream msg;
27
28    msg << tab << "";
29   
30    log_printf(FUNC,RegisterFile_Multi_Banked,"print_body","End");
31
32    return msg.str();
33  };
34
35}; // end namespace registerfile_multi_banked
36}; // end namespace registerfile
37}; // end namespace generic
38
39}; // end namespace behavioural
40}; // end namespace morpheo             
41#endif
Note: See TracBrowser for help on using the repository browser.