Is it also possible to add comments around records like;
{*
Datatype for the storage of boundaries read from GeoDelft files.
@iID identifier
@aCurveNumbers array of curvenumbers (boundary -> curve -> begin and endpoint
}
TGeoBoundary = record
iID: integer;
aCurveNumbers: array of integer;
end;
I hoped it would work but it didn't. Is this something that will be implemented?
Cheers,
Rob
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
{*
Datatype for the storage of boundaries read from
GeoDelft files.
}
TGeoBoundary = record
iID: integer; // identifier
aCurveNumbers: array of integer; // array of curvenumbers (boundary -> curve -> begin and endpoint
end;
Comments for "fileds" are inline.
TridenT
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Is it also possible to add comments around records like;
{*
Datatype for the storage of boundaries read from GeoDelft files.
@iID identifier
@aCurveNumbers array of curvenumbers (boundary -> curve -> begin and endpoint
}
TGeoBoundary = record
iID: integer;
aCurveNumbers: array of integer;
end;
I hoped it would work but it didn't. Is this something that will be implemented?
Cheers,
Rob
ok, this is not implemented yet.
Maybe I will have time to implement it in next-next revision (v0.7a).
It could be fine to have it, so, I will work on it :)
Subscribe to the news list to be aware of last revision.
I will add it in your name in the Request tracker.
TridenT
Feature Request Tracker open : 956580
http://sourceforge.net/tracker/index.php?func=detail&aid=956580&group_id=96281&atid=614258
It could be better to comment record as Classes :
{*
Datatype for the storage of boundaries read from
GeoDelft files.
}
TGeoBoundary = record
iID: integer; // identifier
aCurveNumbers: array of integer; // array of curvenumbers (boundary -> curve -> begin and endpoint
end;
Comments for "fileds" are inline.
TridenT