[Mono-list] How to expose C++ virtual functions?
J. Perkins
jason@379.com
Fri, 17 Jan 2003 12:59:28 -0500
Paolo Molaro wrote:
> On 01/17/03 J. Perkins wrote:
>>How do I get "base.OnInit()" to call wxApp::OnInit()?
>
> I think the only portable way is to add a C function that will call a
> C++ helper function in the derived class, The latter can call
> base->method() safely, since the C++ compiler knows what to do in that
> case.
Boy, that's a pretty obvious solution. I had a feeling that it would be,
thanks.
Jason
379