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

Last change on this file since 75 was 75, checked in by rosiere, 16 years ago

Update all component (except front_end) to :

  • new statistics model
  • no namespace std
File size: 1.0 KB
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/Register_unit_Glue.h"
10
11namespace morpheo {
12namespace behavioural {
13namespace core {
14namespace multi_execute_loop {
15namespace execute_loop {
16namespace register_unit {
17namespace register_unit_glue {
18
19#undef  FUNCTION
20#define FUNCTION "Register_unit_Glue::statistics_declaration"
21  void Register_unit_Glue::statistics_declaration (morpheo::behavioural::Parameters_Statistics * param_statistics)
22  {
23    log_printf(FUNC,Register_unit_Glue,FUNCTION,"Begin");
24
25    _stat = new Stat (static_cast<std::string>(_name),
26                      "Register_unit_Glue",
27                      param_statistics);
28   
29    log_printf(FUNC,Register_unit_Glue,FUNCTION,"End");
30  };
31
32}; // end namespace register_unit_glue
33}; // end namespace register_unit
34}; // end namespace execute_loop
35}; // end namespace multi_execute_loop
36}; // end namespace core
37
38}; // end namespace behavioural
39}; // end namespace morpheo             
40#endif
Note: See TracBrowser for help on using the repository browser.