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

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

Import Morpheo

File size: 574 bytes
Line 
1#ifdef SYSTEMC
2/*
3 * $Id$
4 *
5 * [ Description ]
6 *
7 */
8
9#include "Behavioural/@DIRECTORY/include/@COMPONENT.h"
10
11namespace morpheo                    {
12namespace behavioural {
13@NAMESPACE_BEGIN
14
15  void @COMPONENT::deallocation (void)
16  {
17    log_printf(FUNC,@COMPONENT,"deallocation","Begin");
18
19    delete in_CLOCK;
20    delete in_NRESET;
21
22    // ~~~~~[ Component ]~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~   
23
24    log_printf(FUNC,@COMPONENT,"deallocation","End");
25  };
26
27@NAMESPACE_END
28}; // end namespace behavioural
29}; // end namespace morpheo             
30#endif
Note: See TracBrowser for help on using the repository browser.