Re: Inherited explained



On 21/10/2008 23:12, Rudy Velthuis wrote (amongst others) :
...

Example:

type
Base = class
...
procedure DoSomething(I: Integer); virtual;
...
end;

Derived = class
...
procedure DoSomething(I: Integer); override;
procedure SomethingElse(C: Char);
...
end;

> ...

I assume it should read

Derived = class(Base)

or else I'm totally lost here.

Justus
.