You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to sparx-enterprise-archite...@googlegroups.com
Hello,
I'm pretty new to EA and I've a simple problem with code generation (C). I want to use typedef statement to define a new name. For example I want to get following code:
Code:
typedef struct config_tag config;
struct config_tag { int abc; } ;
So I've created a new UML-diagram, which contains typedef class "config" and struct class "config_tag". Both classes are connected by generalization. After the code generation I'm missing the stereotype struct after the keyword typedef. I'm getting following result:
Code:
typedef config_tag config;
struct config_tag { int abc; } ;
My question is how can I enable to print struct-keyword after the typedef-keyword during the code generation?