source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/Counter/src/Counter_statistics.cpp @ 2

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

Import Morpheo

File size: 573 bytes
Line 
1#ifdef STATISTICS
2/*
3 * $Id$
4 *
5 * [ Description ]
6 *
7 */
8
9#include "Behavioural/Generic/Counter/include/Counter.h"
10
11namespace morpheo                    {
12namespace behavioural {
13namespace generic {
14namespace counter {
15
16  string Counter::statistics (uint32_t depth)
17  {
18    log_printf(FUNC,Counter,"statistics","Begin");
19
20    string txt = _stat->print(depth);
21
22    log_printf(FUNC,Counter,"statistics","End");
23
24    return txt;
25  };
26
27}; // end namespace counter
28}; // end namespace generic
29
30}; // end namespace behavioural
31}; // end namespace morpheo             
32#endif
Note: See TracBrowser for help on using the repository browser.