operator extensions, fixed missing deconstructor

pull/1/head
Thorsten Liebig 2010-10-02 17:55:19 +02:00
parent fb3ccd36bf
commit 1c24877bf4
2 changed files with 6 additions and 0 deletions

View File

@ -24,6 +24,10 @@ Operator_Extension::Operator_Extension(Operator* op)
m_Op = op; m_Op = op;
} }
Operator_Extension::~Operator_Extension()
{
}
Operator_Extension::Operator_Extension(Operator* op, Operator_Extension* op_ext) Operator_Extension::Operator_Extension(Operator* op, Operator_Extension* op_ext)
{ {
UNUSED(op_ext); UNUSED(op_ext);

View File

@ -36,6 +36,8 @@ class Operator_Extension
{ {
friend class Engine_Extension; friend class Engine_Extension;
public: public:
virtual ~Operator_Extension();
//! Create a clone of this extension, will return NULL if this is impossible //! Create a clone of this extension, will return NULL if this is impossible
/*! /*!
Create a clone of this extension, will return NULL if this is impossible (e.g. derived extension has no clone method and copy-constructor)... Create a clone of this extension, will return NULL if this is impossible (e.g. derived extension has no clone method and copy-constructor)...