On Tue, Apr 12, 2011 at 11:42 AM, wrote:
>
>
> On Tue, 12 Apr 2011, Andreas Dorn wrote:
>
> On Fri, 8 Apr 2011,michael.vancanneyt worte:
>>
>>> The whole idea of interfaces is to avoid multiple inheritance.
>>>
>>> Hm. I don't believe that.
>>
>> One of the major points of interfaces is indeed
On Tue, 12 Apr 2011, Andreas Dorn wrote:
On Fri, 8 Apr 2011,michael.vancanneyt worte:
The whole idea of interfaces is to avoid multiple inheritance.
Hm. I don't believe that.
One of the major points of interfaces is indeed to avoid the problems
of multiple class inheritance (diamond proble
On Fri, 8 Apr 2011,michael.vancanneyt worte:
The whole idea of interfaces is to avoid multiple inheritance.
Hm. I don't believe that.
One of the major points of interfaces is indeed to avoid the problems
of multiple class inheritance (diamond problems - i.e. problems caused by
conflicting impl
On Fri, Apr 8, 2011 at 6:16 AM, wrote:
>
>
> On Fri, 8 Apr 2011, Zaher Dirkey wrote:
>
>> 2011/4/7 Flávio Etrusco
>>
>>> On Wed, Apr 6, 2011 at 1:37 PM, Zaher Dirkey wrote:
Can i do that?
type
IIntf3 = interface(IIntf11, IIntf2)
end;
Thanks in adva
On Fri, 8 Apr 2011, Zaher Dirkey wrote:
2011/4/7 Flávio Etrusco
On Wed, Apr 6, 2011 at 1:37 PM, Zaher Dirkey wrote:
Can i do that?
type
IIntf3 = interface(IIntf11, IIntf2)
end;
Thanks in advance.
--
Zaher Dirkey
For Corba interfaces, yes. Not for COM interfaces.
http://www.fr
2011/4/7 Flávio Etrusco
> On Wed, Apr 6, 2011 at 1:37 PM, Zaher Dirkey wrote:
> > Can i do that?
> > type
> > IIntf3 = interface(IIntf11, IIntf2)
> >
> > end;
> >
> > Thanks in advance.
> > --
> > Zaher Dirkey
> >
>
> For Corba interfaces, yes. Not for COM interfaces.
> http://www.freep
On Wed, Apr 6, 2011 at 1:37 PM, Zaher Dirkey wrote:
> Can i do that?
> type
> IIntf3 = interface(IIntf11, IIntf2)
>
> end;
>
> Thanks in advance.
> --
> Zaher Dirkey
>
For Corba interfaces, yes. Not for COM interfaces.
http://www.freepascal.org/docs-html/ref/refse39.html
-Flávio
___
Zaher Dirkey kirjoitti keskiviikko, 6. huhtikuuta 2011 19:37:04:
> Can i do that?
> type
> IIntf3 = interface(IIntf11, IIntf2)
>
> end;
No but you can do:
type
MyClass = class(IIntf11, IIntf2)
end;
Juha
___
fpc-pascal maillist - f