dol: initial dol commit
[jump.git] / dol / src / dol / visitor / hdsd / scd / fsm / scd_stm_terminated.h
1 #ifndef SCD_STM_TERMINATED_H
2 #define SCD_STM_TERMINATED_H
3
4 #include "fsm/scd_stm_base.h"
5
6
7 class scd_stm_terminated : public scd_stm_base
8 {
9 public:
10     scd_stm_terminated(scd_simulator& sim, scd_cont_man_master& fsm):
11        scd_stm_base(sim, fsm) { _name = "terminated"; }
12     virtual ~scd_stm_terminated() {}
13
14     /* scd_cont_fsm_if */
15     void set_fail() {}
16     void process() {}
17     bool active() const;
18
19 };
20
21 #endif