[fpc-devel] fpdoc / methods/properties in inherited

2009-11-15 Thread Martin
Another question Asume the following type TListBase = class protected Procedure SetFoo(AValue: TFoo) ; virtual; abstract; Function GetFoo: TFoo ; virtual; abstract; public property Foo read GetFoo write SetFoo; end; TListSpecific = class(TListBase) protected Procedure

Re: [fpc-devel] fpdoc / methods/properties in inherited

2009-11-15 Thread Mattias Gaertner
On Sun, 15 Nov 2009 19:33:41 + Martin laza...@mfriebe.de wrote: Another question Asume the following type TListBase = class protected Procedure SetFoo(AValue: TFoo) ; virtual; abstract; Function GetFoo: TFoo ; virtual; abstract; public property Foo read GetFoo