mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-25 23:31:03 +02:00
* IInterfaceListEx
This commit is contained in:
parent
92de1a6fbe
commit
3b8a4137a5
@ -2679,7 +2679,14 @@ type
|
|||||||
property Current: IUnknown read GetCurrent;
|
property Current: IUnknown read GetCurrent;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
TInterfaceList = class(TInterfacedObject,IInterfaceList)
|
IInterfaceListEx = interface(IInterfaceList)
|
||||||
|
['{FDB39D70-65B9-4995-9436-6084ACA05DB3}']
|
||||||
|
function GetEnumerator: TInterfaceListEnumerator;
|
||||||
|
end;
|
||||||
|
|
||||||
|
{ TInterfaceList }
|
||||||
|
|
||||||
|
TInterfaceList = class(TInterfacedObject,IInterfaceList,IInterfaceListEx)
|
||||||
private
|
private
|
||||||
FList : TThreadList;
|
FList : TThreadList;
|
||||||
protected
|
protected
|
||||||
|
Loading…
Reference in New Issue
Block a user