59,60c59,60
< sc_core::sc_status status() { return _status; }
< void status(sc_core::sc_status s) { _status = s; }
---
> static sc_core::sc_status status();
> static void status(sc_core::sc_status s);
62c62
< void stop();
---
> static void stop();
64,65c64,65
< bool startOfSimulationComplete() { return _startComplete; }
< bool endOfSimulationComplete() { return _endComplete; }
---
> static bool startOfSimulationComplete();
> static bool endOfSimulationComplete();
68,69c68
< bool _stopAfterCallbacks;
< void stopWork();
---
> static void stopWork();
71,74d69
< bool _startComplete;
< bool _endComplete;
< sc_core::sc_status _status;
<