operator extensions, fixed missing deconstructor
parent
fb3ccd36bf
commit
1c24877bf4
|
@ -24,6 +24,10 @@ Operator_Extension::Operator_Extension(Operator* op)
|
|||
m_Op = op;
|
||||
}
|
||||
|
||||
Operator_Extension::~Operator_Extension()
|
||||
{
|
||||
}
|
||||
|
||||
Operator_Extension::Operator_Extension(Operator* op, Operator_Extension* op_ext)
|
||||
{
|
||||
UNUSED(op_ext);
|
||||
|
|
|
@ -36,6 +36,8 @@ class Operator_Extension
|
|||
{
|
||||
friend class Engine_Extension;
|
||||
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 (e.g. derived extension has no clone method and copy-constructor)...
|
||||
|
|
Loading…
Reference in New Issue