bugfix: missing virtual destructor

This commit is contained in:
Sebastian Held 2012-11-15 22:26:13 +01:00
parent fb542df1c3
commit c45cd4ab70

View File

@ -32,6 +32,8 @@ class Engine_Interface_Base
public:
enum InterpolationType { NO_INTERPOLATION, NODE_INTERPOLATE, CELL_INTERPOLATE };
virtual ~Engine_Interface_Base() {;} //!< provide a virtual destructor to correctly delete derived objects
//! Set the operator used for this engine interface.
virtual void SetOperator(Operator_Base* base_op) {m_Op_Base=base_op;}
//! Get the operator used for this engine interface.