Sparx Systems Forum
Enterprise Architect => Suggestions and Requests => Topic started by: mmrack on May 28, 2003, 11:36:21 am
-
Hi,
Would not be interesting the possibility to generate Corba IDL files from a class diagram?
Look the example above:
-------------------
UnitPeople.PAS
-------------------
TPeople = class
protected
Fname : string;
public
procedure setName(Value: string);
functino getName : string;
published
property name : string read getName write setName;
end;
-------------------
UnitPeople.IDL
-------------------
module UnitPeople {
interface TPeople {
attribute string name;
};
};