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

Last change on this file since 53 was 53, checked in by rosiere, 17 years ago
  • Banc de registre multi banc
  • Banc de registre générique.
File size: 551 bytes
RevLine 
[2]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
[53]15#undef  FUNCTION
16#define FUNCTION "@COMPONENT::statistics"
[2]17  string @COMPONENT::statistics (uint32_t depth)
18  {
[53]19    log_printf(FUNC,@COMPONENT,FUNCTION,"Begin");
[2]20
21    string txt = _stat->print(depth);
22   
[53]23    log_printf(FUNC,@COMPONENT,FUNCTION,"End");
[2]24
25    return txt;
26  };
27
28@NAMESPACE_END
29}; // end namespace behavioural
30}; // end namespace morpheo             
31#endif
Note: See TracBrowser for help on using the repository browser.