I've got TbsManager class which expose Load method like:
TbsManager = class(TComponent)
private
FItems: TbsItems;
public
procedure Load(Item: TbsItem);
The TbsItem is a TCollectionItem and it's owned by TbsItems:
TbsItem = class(TCollectionItem)
TbsItems = class(TCollection)
I want my TbsItems to have the Load method (which is in the onwer's owner class) and this is how I achieved it:
procedure TbsItem.Load;
begin
TbsManager(TbsItems(GetOwner).Owner).Load(Self);
end;
I'm not sure if I've done it right. Is it a safe code?