source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Configuration/src/Link_definition.cpp @ 88

Last change on this file since 88 was 88, checked in by rosiere, 15 years ago

Almost complete design
with Test and test platform

  • Property svn:keywords set to Id
File size: 1.0 KB
Line 
1/*
2 * $Id: Link_definition.cpp 88 2008-12-10 18:31:39Z rosiere $
3 *
4 * [ Description ]
5 *
6 */
7
8#include "Behavioural/Configuration/include/Link_definition.h"
9#include "Behavioural/include/Stat_binary_tree.h"
10
11namespace morpheo {
12namespace behavioural {
13namespace configuration {
14
15#undef  FUNCTION
16#define FUNCTION "Link_definition::Link_definition"
17  Link_definition::Link_definition  (std::string   name   ,
18                                     std::string   src    ,
19                                     std::string   dest   ,
20                                     std::string   description):
21    _name        (name         ),
22    _src         (src          ),
23    _dest        (dest         ),
24    _description (description  )
25  {
26    log_begin(Configuration,FUNCTION);
27    log_end(Configuration,FUNCTION);
28  };
29
30#undef  FUNCTION
31#define FUNCTION "Link_definition::~Link_definition"
32  Link_definition::~Link_definition () 
33  {
34    log_begin(Configuration,FUNCTION);
35    log_end(Configuration,FUNCTION);
36  };
37
38}; // end namespace configuration
39}; // end namespace behavioural
40}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.