I'm using Enterprise Architect code generation feature to export my models to Delphi code. Is there a way to specify interface GUIDs in EA so that interfaces are completely defined in the output code?
Example:
ILogger = interface
procedure Log(AMessage: ILoggerMessage);
end;
should be
ILogger = interface
['{16B77CF4-4219-412D-B1F3-20E29E2E9D9E}']
procedure Log(AMessage: ILoggerMessage);
end;