|
From: silvioprog <sil...@gm...> - 2015-06-09 00:31:55
|
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!
--
Silvio Clécio
My public projects - github.com/silvioprog
|