|
From: silvioprog <sil...@gm...> - 2015-06-09 00:49:10
|
On Mon, Jun 8, 2015 at 9:31 PM, silvioprog <sil...@gm...> wrote:
> Hello,
>
> I have a structure like this:
>
> { This class provides some features blah blah blah... }
> TSomeClass = class abstract(TObject)
> public
> { This method executes blah blah blah... }
> procedure SomeMethod; virtual; abstract;
> end;
>
> TOtherClass = class(TSomeClass)
> public
> { <<< what I put here? >>> }
> procedure SomeMethod; override;
> end;
>
> I.e, in TOtherClass I need to override the comment "This method executes
> blah blah blah..." from the TBaseClass class.
>
> How to do that? Is it possible in current released PasDoc?
>
> Thank you!
>
Oh, I found this link:
https://sourceforge.net/p/pasdoc/patches/4/
Is this (nice) feature implemented in PasDoc 0.13.0?
Thank you!
--
Silvio Clécio
My public projects - github.com/silvioprog
|