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