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

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

Import Morpheo

File size: 729 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  Parameters::Parameters ()
15  {
16    log_printf(FUNC,@COMPONENT,"Parameters","Begin");
17    test();
18    log_printf(FUNC,@COMPONENT,"Parameters","End");
19  };
20 
21  Parameters::Parameters (Parameters & param)
22  {
23    log_printf(FUNC,@COMPONENT,"Parameters","Begin");
24    test();
25    log_printf(FUNC,@COMPONENT,"Parameters","End");
26  };
27
28  Parameters::~Parameters () 
29  {
30    log_printf(FUNC,@COMPONENT,"~Parameters","Begin");
31    log_printf(FUNC,@COMPONENT,"~Parameters","End");
32  };
33
34@NAMESPACE_END
35}; // end namespace behavioural
36}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.