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

Last change on this file since 48 was 15, checked in by rosiere, 17 years ago

Interface normalisé
Début du banc de registres multi niveaux

File size: 978 bytes
Line 
1#ifdef STATISTICS
2/*
3 * $Id$
4 *
5 * [ Description ]
6 *
7 */
8
9#include "Behavioural/Generic/RegisterFile/RegisterFile_Multi_Banked/RegisterFile_Multi_Banked_Glue/include/Statistics.h"
10
11#include <sstream>
12using namespace std;
13
14namespace morpheo                    {
15namespace behavioural {
16namespace generic {
17namespace registerfile{
18namespace registerfile_multi_banked {
19namespace registerfile_multi_banked_glue {
20
21
22  string Statistics::print_body (uint32_t depth)
23  {
24    log_printf(FUNC,RegisterFile_Multi_Banked_Glue,"print_body","Begin");
25
26    string        tab = string(depth,'\t');
27    ostringstream msg;
28
29    msg << tab << "";
30   
31    log_printf(FUNC,RegisterFile_Multi_Banked_Glue,"print_body","End");
32
33    return msg.str();
34  };
35
36}; // end namespace registerfile_multi_banked_glue
37}; // end namespace registerfile_multi_banked
38}; // end namespace registerfile
39}; // end namespace generic
40
41}; // end namespace behavioural
42}; // end namespace morpheo             
43#endif
Note: See TracBrowser for help on using the repository browser.