source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Execute_loop/Execute_loop/Register_unit/Register_unit_Glue/src/Statistics_print_body.cpp @ 60

Last change on this file since 60 was 60, checked in by rosiere, 17 years ago
File size: 1022 bytes
Line 
1#ifdef STATISTICS
2/*
3 * $Id$
4 *
5 * [ Description ]
6 *
7 */
8
9#include "Behavioural/Core/Multi_Execute_loop/Execute_loop/Register_unit/Register_unit_Glue/include/Statistics.h"
10
11#include <sstream>
12using namespace std;
13
14namespace morpheo                    {
15namespace behavioural {
16namespace core {
17namespace multi_execute_loop {
18namespace execute_loop {
19namespace register_unit {
20namespace register_unit_glue {
21
22
23#undef  FUNCTION
24#define FUNCTION "Register_unit_Glue::print_body"
25  string Statistics::print_body (uint32_t depth)
26  {
27    log_printf(FUNC,Register_unit_Glue,FUNCTION,"Begin");
28
29    string        tab = string(depth,'\t');
30    ostringstream msg;
31
32    msg << tab << "";
33   
34    log_printf(FUNC,Register_unit_Glue,FUNCTION,"End");
35
36    return msg.str();
37  };
38
39}; // end namespace register_unit_glue
40}; // end namespace register_unit
41}; // end namespace execute_loop
42}; // end namespace multi_execute_loop
43}; // end namespace core
44
45}; // end namespace behavioural
46}; // end namespace morpheo             
47#endif
Note: See TracBrowser for help on using the repository browser.