Tagged Questions

TInterfacedObject is a base for simple classes implementating basic IInterface. It is defined in the System.pas unit.

learn more… | top users | synonyms

5
votes
8answers
1k views

Reference-counting for objects

In my code I use a small data-storing class, which is created in different places. To avoid memory leaks and simplify things, I want to use reference counting, so I did type TFileInfo = class ...
4
votes
2answers
182 views

Why does the compiler say the implementation “differs from the previous declaration” when they look identical?

i have two units, first one, my interface: use personas interface type Tllave = array[0..31] of byte; Tdatos = array of byte; ImyInterface = interface(IInterface) function nombre : ...
2
votes
3answers
1k views

why aren't descendants of TInterfacedObject garbage collected?

i have a class based on TInterfacedObject. i add it to TTreeNode's Data property. TFacilityTreeItem=class(TInterfacedObject) private m_guidItem:TGUID; m_SomeOtherNode:TTreeNode; public end; i ...