<p dir="ltr">Hi,<br>
I had a class derived from vtkInteractorStyleRubberBandPick defined as following:</p>
<p dir="ltr">class myAreaSelector : public vtkInteractorStyleRubberBandPick<br>
{<br>
public:<br>
  vtkTypeMacro(myAreaSelector, vtkInteractorStyleRubberBandPick);<br>
  static myAreaSelector *New();<br>
.....<br>
};</p>
<p dir="ltr">And implemented this new function with:</p>
<p dir="ltr">vtkStandardNewMacro(myAreaSelector);</p>
<p dir="ltr">Which leads to error C2660 : 'vtkObject::operator new' not take 3 parameters</p>
<p dir="ltr">Is there any wrong doings with this implementation?</p>
<p dir="ltr">Any suggestion to overcoming this error message is welcome.</p>