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/include/Stat.h

    r84 r88  
    4444    class Stat
    4545    {
    46       const std::string              _name_instance;
    47       const std::string              _name_component;
    48       const cycle_t                  _nb_cycle_before_begin;
    49       const cycle_t                  _period;
    50       const bool                     _save_periodic;
     46    private: const std::string              _name_instance;
     47    private: const std::string              _name_component;
     48    private: const cycle_t                  _nb_cycle_before_begin;
     49    private: const cycle_t                  _period;
     50    private: const bool                     _save_periodic;
    5151      // Tableau des variables
    52       std::map<std::string, var_t> * _list_operand;
     52    private: std::map<std::string, var_t> * _list_operand;
    5353      // Liste chaîné des expressions
    54       std::list<expr_t>            * _list_expr;
     54    private: std::list<expr_t>            * _list_expr;
    5555
    56       counter_t                    * _cycle;
     56    private: counter_t                    * _cycle;
    5757
    58       std::list<Stat *>            * _list_stat;
     58    private: std::list<Stat *>            * _list_stat;
    5959
    60       bool                           _generate_file;
     60    private: bool                           _generate_file;
    6161
    6262    public :                     Stat                         (std::string name_instance,
Note: See TracChangeset for help on using the changeset viewer.