Another problem: I'm trying to enter a description to a class, and I've tried:
a)
{*---------------------- description
-----------------------} type TMyClass= class(TObject) .... end;
b)
type TMyClass= class(TObject) /// description .... end;
c)
type TMyClass= class(TObject) .... end; /// description
None of the three options work with version 0.10b or 0.9b, I allways get:
TMyClass #No TAG found in source code#
I can get descriptions for every private value and private and public methods in the class, but i cannot find description for the class itsself.
Can anybody help me?
You must enter your description AFTER the "type" keyword.
example of valid wriiting: type {*---------------------- description -----------------------} TMyClass= class(TObject) .... end;
type /// description TMyClass= class(TObject) .... end;
Log in to post a comment.
Another problem: I'm trying to enter a description to a class, and I've tried:
a)
{*----------------------
description
-----------------------}
type TMyClass= class(TObject)
....
end;
b)
type TMyClass= class(TObject) /// description
....
end;
c)
type TMyClass= class(TObject)
....
end; /// description
None of the three options work with version 0.10b or 0.9b, I allways get:
TMyClass #No TAG found in source code#
I can get descriptions for every private value and private and public methods in the class, but i cannot find description for the class itsself.
Can anybody help me?
You must enter your description AFTER the "type" keyword.
example of valid wriiting:
type
{*----------------------
description
-----------------------}
TMyClass= class(TObject)
....
end;
b)
type
/// description
TMyClass= class(TObject)
....
end;