source: trunk/IPs/systemC/processor/Morpheo/Behavioural/New_Component/src/New_Component_statistics.cpp @ 2

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

Import Morpheo

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