add MockExecutive.hh

This commit is contained in:
Scott Fennell 2022-08-04 12:27:21 -05:00
parent 1e2c889fa7
commit 71de8837d2
2 changed files with 6 additions and 1 deletions

View File

@ -45,7 +45,7 @@ namespace Trick {
class IExecutive : public Trick::Scheduler {
public:
/** gets #except_return */
virtual int get_except_return() const;
virtual int get_except_return() const = 0;
// protected:
// /** Attempts to attach a debugger in the event a signal shuts down the simulation.\n */

View File

@ -0,0 +1,5 @@
class MockExecutive: public IExecutive {
};