source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/Shifter/src/Statistics_print_body.cpp @ 2

Last change on this file since 2 was 2, checked in by kane, 17 years ago

Import Morpheo

File size: 560 bytes
Line 
1#ifdef STATISTICS
2/*
3 * $Id$
4 *
5 * [ Description ]
6 *
7 */
8
9#include "Behavioural/Generic/Shifter/include/Statistics.h"
10
11#include <sstream>
12using namespace std;
13
14namespace morpheo {
15namespace behavioural {
16namespace generic {
17namespace shifter {
18
19  string Statistics::print_body (uint32_t depth)
20  {
21    string        tab = string(depth,'\t');
22    ostringstream msg;
23
24    msg << tab << "";
25   
26    return msg.str();
27  };
28
29}; // end namespace shifter
30}; // end namespace generic
31}; // end namespace behavioural
32}; // end namespace morpheo             
33#endif
Note: See TracBrowser for help on using the repository browser.