source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Configuration/src/Parameter_affectation.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: 956 bytes
Line 
1/*
2 * $Id: Parameter_affectation.cpp 88 2008-12-10 18:31:39Z rosiere $
3 *
4 * [ Description ]
5 *
6 */
7
8#include "Behavioural/Configuration/include/Parameter_affectation.h"
9#include "Behavioural/include/Stat_binary_tree.h"
10
11namespace morpheo {
12namespace behavioural {
13namespace configuration {
14
15#undef  FUNCTION
16#define FUNCTION "Parameter_affectation::Parameter_affectation"
17  Parameter_affectation::Parameter_affectation  (std::string name   ,
18                                                 std::string value  ):
19    _name        (name         ),
20    _value       (value        )
21  {
22    log_begin(Configuration,FUNCTION);
23
24    _use = false;
25
26    log_end(Configuration,FUNCTION);
27  };
28
29#undef  FUNCTION
30#define FUNCTION "Parameter_affectation::~Parameter_affectation"
31  Parameter_affectation::~Parameter_affectation () 
32  {
33    log_begin(Configuration,FUNCTION);
34    log_end(Configuration,FUNCTION);
35  };
36
37}; // end namespace configuration
38}; // end namespace behavioural
39}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.