fix: missing Engine_Extension deconstructor

pull/1/head
Thorsten Liebig 2010-07-15 12:11:48 +02:00
parent 1cc0bb7803
commit 7744bf6030
2 changed files with 6 additions and 0 deletions

View File

@ -24,3 +24,7 @@ Engine_Extension::Engine_Extension(Operator_Extension* op_ext)
m_Op_ext = op_ext;
m_Eng = NULL;
}
Engine_Extension::~Engine_Extension()
{
}

View File

@ -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!!!