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

Last change on this file since 82 was 82, checked in by rosiere, 16 years ago
  • support locale (now must "just" translate)
  • update all component with new test format
  • update all component with usage
  • New component : decod queue and prediction_unit
File size: 828 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_begin(@COMPONENT,FUNCTION);
19    test();
20    log_end(@COMPONENT,FUNCTION);
21  };
22 
23// #undef  FUNCTION
24// #define FUNCTION "@COMPONENT::Parameters (copy)"
25//   Parameters::Parameters (Parameters & param)
26//   {
27//     log_begin(@COMPONENT,FUNCTION);
28//     test();
29//     log_end(@COMPONENT,FUNCTION);
30//   };
31
32#undef  FUNCTION
33#define FUNCTION "@COMPONENT::~Parameters"
34  Parameters::~Parameters () 
35  {
36    log_begin(@COMPONENT,FUNCTION);
37    log_end(@COMPONENT,FUNCTION);
38  };
39
40@NAMESPACE_END
41}; // end namespace behavioural
42}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.