source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Configuration/src/Parameter_affectation.cpp @ 109

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

1) Configuration : instance configuration file : regroup similar instance
2) Configuration : timing default = 0
3) Debug/Commit_unit : Add watch dog timer
4) Issue_queue : Test parameters : add test if type is optionnal
5) Cor_glue : Fix insert index
6) Free_list : remove bank_by_pop (else deadlock)
7) Update Free List : add register to source event

  • Property svn:keywords set to Id
File size: 944 bytes
Line 
1/*
2 * $Id: Parameter_affectation.cpp 109 2009-02-16 20:28:31Z 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  {
21    log_begin(Configuration,FUNCTION);
22
23    _value = value;
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.