FLTK native in 'D'. Would that be useful?
Sean Kelly
sean at f4.ca
Fri Jul 28 10:55:41 PDT 2006
Dave wrote:
> MatthiasM wrote:
>> Dave wrote:
>>>
>>> Make sense?
>>
>> Yes, absolutely! Another issue solved ;-)
>
> One other note on this <g> If a member function needs to be protected or
> public but is not to be overridden, it can be made 'final'. Then the
> compiler will always call it directly and it can be inlined, etc.
Yup. In general, all C++ functions that are not virtual should be
marked 'final' in D. Also, any private virtual functions must be made
protected instead.
Sean
More information about the Digitalmars-d-dwt
mailing list