source: trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Vhdl.cpp @ 43

Last change on this file since 43 was 43, checked in by rosiere, 17 years ago

Modif mineur : ajout d'info de débug

Release non stable

File size: 653 bytes
Line 
1#ifdef VHDL
2
3/*
4 * $Id$
5 *
6 * [ Description ]
7 *
8 */
9
10#include "Behavioural/include/Vhdl.h"
11
12namespace morpheo              {
13namespace behavioural          {
14
15#undef  FUNCTION
16#define FUNCTION "Vhdl::Vhdl"
17  Vhdl::Vhdl  (string                name):
18    _name   (name)
19  {
20    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
21    log_printf(FUNC,Behavioural,FUNCTION,"End");
22  };
23 
24#undef  FUNCTION
25#define FUNCTION "Vhdl::~Vhdl"
26  Vhdl::~Vhdl ()
27  {
28    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
29    log_printf(FUNC,Behavioural,FUNCTION,"End");
30  };
31 
32
33}; // end namespace behavioural         
34}; // end namespace morpheo             
35
36#endif
Note: See TracBrowser for help on using the repository browser.