On Sunday 13 July 2014 23:22:19 Ivanko B wrote:
> implement multiple inheritance for interfaces.
> ===========================
> Like it's already done in FPC ? It's NECESSARY!

It does not compile for me:
"
type
 i1 = interface
 end;
 
 i2 = interface
 end;
 
 i3 = interface(i1,i2)
 end;             ^
" ->              |
"
main.pas(41,19) Fatal: Syntax error, ")" expected but "," found
Fatal: Compilation aborted
"

> And may be even for 
> classes as well/
>
Like in C++? AFAIK complicated and problematic.
In classes I think about a possibility to automatically delegate methods to 
embedded controller classes without the detour of manual dummy methods or 
using interfaces.

Martin

------------------------------------------------------------------------------
Want fast and easy access to all the code in your enterprise? Index and
search up to 200,000 lines of code with a free copy of Black Duck®
Code Sight™ - the same software that powers the world's largest code
search on Ohloh, the Black Duck Open Hub! Try it now.
http://p.sf.net/sfu/bds
_______________________________________________
mseide-msegui-talk mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk

Reply via email to