dol: initial dol commit
[jump.git] / dol / src / dol / visitor / hdsd / scd / fsm / scd_stm_time.h
1 #ifndef SCD_STM_TIME_H
2 #define SCD_STM_TIME_H
3
4 #include "fsm/scd_stm_base.h"
5
6
7 class scd_stm_time : public scd_stm_base
8 {
9 public:
10     scd_stm_time(scd_simulator& sim, scd_cont_man_master& fsm):
11        scd_stm_base(sim, fsm) { _name = "time"; }
12     virtual ~scd_stm_time() {}
13
14     /* scd_cont_fsm_if */
15     bool advance_time() const;
16     const sc_core::sc_time& get_time_step();
17 };
18
19 #endif