source: trunk/IPs/systemC/processor/Morpheo/Behavioural/New_Component_vbe/src/Parameters.cpp @ 88

Last change on this file since 88 was 88, checked in by rosiere, 15 years ago

Almost complete design
with Test and test platform

File size: 1.0 KB
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 (bool is_toplevel)
17  {
18    log_begin(@COMPONENT,FUNCTION);
19
20    test();
21
22    if (is_toplevel)
23      {
24        copy();
25      }
26
27    log_end(@COMPONENT,FUNCTION);
28  };
29 
30// #undef  FUNCTION
31// #define FUNCTION "@COMPONENT::Parameters (copy)"
32//   Parameters::Parameters (Parameters & param)
33//   {
34//     log_begin(@COMPONENT,FUNCTION);
35//     test();
36//     log_end(@COMPONENT,FUNCTION);
37//   };
38
39#undef  FUNCTION
40#define FUNCTION "@COMPONENT::~Parameters"
41  Parameters::~Parameters (void) 
42  {
43    log_begin(@COMPONENT,FUNCTION);
44    log_end(@COMPONENT,FUNCTION);
45  };
46
47#undef  FUNCTION
48#define FUNCTION "@COMPONENT::copy"
49  void Parameters::copy (void) 
50  {
51    log_begin(@COMPONENT,FUNCTION);
52    log_end(@COMPONENT,FUNCTION);
53  };
54
55@NAMESPACE_END
56}; // end namespace behavioural
57}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.