source: trunk/IPs/systemC/processor/Morpheo/Behavioural/New_Component_vst/src/Parameters.cpp @ 81

Last change on this file since 81 was 81, checked in by rosiere, 16 years ago
  • Finish Environment (and test)
  • Continue predictor_unit
  • Add external tools
  • svn keyword "Id" set
  • Property svn:keywords set to Id
File size: 912 bytes
Line 
1/*
2 * $Id: Parameters.cpp 81 2008-04-15 18:40:01Z rosiere $
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.