Search Results

2
votes

Passing Interface’s method as parameter

How about this: type TMoveProc = procedure(const SomeIntf: ISomeInterface); TSomeObject = class public procedure Move(const SomeIntf: ISomeInterface; MoveProc: TMoveProc) …
0
votes

Is Inheriting nested classes possible?

TParent.x := 10; TParent.TNested.y := 10; …