source: trunk/IPs/systemC/processor/Morpheo/Behavioural/New_Component/src/Parameters.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: 888 bytes
Line 
1/*
2 * $Id$
3 *
4 * [ Description ]
5 *
6 */
7
8#include "Behavioural/@DIRECTORY/include/Parameters.h"
9
10namespace morpheo {
11namespace behavioural {
12@NAMESPACE_BEGIN
13
14#undef  FUNCTION
15#define FUNCTION "@COMPONENT::Parameters"
16  Parameters::Parameters ()
17  {
18    log_printf(FUNC,@COMPONENT,FUNCTION,"Begin");
19    test();
20    log_printf(FUNC,@COMPONENT,FUNCTION,"End");
21  };
22 
23#undef  FUNCTION
24#define FUNCTION "@COMPONENT::Parameters (copy)"
25  Parameters::Parameters (Parameters & param)
26  {
27    log_printf(FUNC,@COMPONENT,FUNCTION,"Begin");
28    test();
29    log_printf(FUNC,@COMPONENT,FUNCTION,"End");
30  };
31
32#undef  FUNCTION
33#define FUNCTION "@COMPONENT::~Parameters"
34  Parameters::~Parameters () 
35  {
36    log_printf(FUNC,@COMPONENT,FUNCTION,"Begin");
37    log_printf(FUNC,@COMPONENT,FUNCTION,"End");
38  };
39
40@NAMESPACE_END
41}; // end namespace behavioural
42}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.