Ignore:
Timestamp:
Dec 10, 2008, 7:31:39 PM (15 years ago)
Author:
rosiere
Message:

Almost complete design
with Test and test platform

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/New_Component_vbe/src/Parameters.cpp

    r82 r88  
    1414#undef  FUNCTION
    1515#define FUNCTION "@COMPONENT::Parameters"
    16   Parameters::Parameters ()
     16  Parameters::Parameters (bool is_toplevel)
    1717  {
    1818    log_begin(@COMPONENT,FUNCTION);
     19
    1920    test();
     21
     22    if (is_toplevel)
     23      {
     24        copy();
     25      }
     26
    2027    log_end(@COMPONENT,FUNCTION);
    2128  };
     
    3239#undef  FUNCTION
    3340#define FUNCTION "@COMPONENT::~Parameters"
    34   Parameters::~Parameters ()
     41  Parameters::~Parameters (void)
     42  {
     43    log_begin(@COMPONENT,FUNCTION);
     44    log_end(@COMPONENT,FUNCTION);
     45  };
     46
     47#undef  FUNCTION
     48#define FUNCTION "@COMPONENT::copy"
     49  void Parameters::copy (void)
    3550  {
    3651    log_begin(@COMPONENT,FUNCTION);
Note: See TracChangeset for help on using the changeset viewer.