show/hide this revision's text 2 deleted 5 characters in body

If it is actually a TInterfaceDictionary you can write it like this:

type
  TInterfaceDictionary = TObjectDictionary<TGUID, TObject>;

Obviously this requires a GUID for each interface to use.

Due to some compiler magic you can use it like quite simplesimply:

  d.Add(ISomeInterface, TSomeImplementation.Create());

(Mason: sorry for hijacking the sample code)

show/hide this revision's text 1

If it is actually a TInterfaceDictionary you can write it like this:

type
  TInterfaceDictionary = TObjectDictionary<TGUID, TObject>;

Obviously this requires a GUID for each interface to use.

Due to some compiler magic you can use it like quite simple:

  d.Add(ISomeInterface, TSomeImplementation.Create());

(Mason: sorry for hijacking the sample code)