fix: missing Engine_Extension deconstructor
parent
1cc0bb7803
commit
7744bf6030
|
@ -24,3 +24,7 @@ Engine_Extension::Engine_Extension(Operator_Extension* op_ext)
|
||||||
m_Op_ext = op_ext;
|
m_Op_ext = op_ext;
|
||||||
m_Eng = NULL;
|
m_Eng = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Engine_Extension::~Engine_Extension()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
|
@ -25,6 +25,8 @@ class Engine;
|
||||||
class Engine_Extension
|
class Engine_Extension
|
||||||
{
|
{
|
||||||
public:
|
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!!!
|
//! 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() {}
|
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!!!
|
//! 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