You've already forked lazarus-ccr
Documentation handling in wsdl/xsd editing and parsing :
+ main windows of the Type Library Editor now has, for the select item, a document view, xsd view and a dependencies view + each type edit dialog now has, for the select item, a document view, xsd view and a dependencies view + the interface file generator is able to generate the xsd documentation as comments in the Object Pascal source code git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@531 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@@ -28,7 +28,8 @@ Type
|
||||
|
||||
TComandLineOption = (
|
||||
cloInterface, cloProxy, cloImp, cloBinder, cloWsdl, cloXsd,
|
||||
cloOutPutDirRelative, cloOutPutDirAbsolute, cloHandleWrappedParameters
|
||||
cloOutPutDirRelative, cloOutPutDirAbsolute, cloHandleWrappedParameters,
|
||||
cloGenerateDocAsComments
|
||||
);
|
||||
TComandLineOptions = set of TComandLineOption;
|
||||
|
||||
@@ -76,6 +77,7 @@ begin
|
||||
'w' : Include(AAppOptions,cloWsdl);
|
||||
'x' : Include(AAppOptions,cloXsd);
|
||||
'y' : Include(AAppOptions,cloHandleWrappedParameters);
|
||||
'd' : Include(AAppOptions,cloGenerateDocAsComments);
|
||||
end;
|
||||
until ( c = EndOfOptions );
|
||||
Result := OptInd;
|
||||
|
||||
Reference in New Issue
Block a user