fix: missing Engine_Extension deconstructor
This commit is contained in:
parent
1cc0bb7803
commit
7744bf6030
@ -24,3 +24,7 @@ Engine_Extension::Engine_Extension(Operator_Extension* op_ext)
|
||||
m_Op_ext = op_ext;
|
||||
m_Eng = NULL;
|
||||
}
|
||||
|
||||
Engine_Extension::~Engine_Extension()
|
||||
{
|
||||
}
|
||||
|
@ -25,6 +25,8 @@ class Engine;
|
||||
class Engine_Extension
|
||||
{
|
||||
public:
|
||||
virtual ~Engine_Extension();
|
||||
|
||||
//! This methode will be called __before__ the main engine does the usual voltage updates. This methode may __not__ change the engine voltages!!!
|
||||
virtual void DoPreVoltageUpdates() {}
|
||||
//! This methode will be called __after__ the main engine does the usual voltage updates. This methode may __not__ change the engine voltages!!!
|
||||
|
Loading…
Reference in New Issue
Block a user