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

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

Almost complete design
with Test and test platform

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