I'm drawing an application in order to generate the C++ code.
I would like to write the operations implementation and I added the code into "Tagged Values\UMLStandard\Implementation" dialog but the generated code contains empty operation implementations.
I have code like this:
Could be a useful feature to be implemented in a future release.
I don't know Delphi but I think that using the "Tagged Values" approach could be easily implemented.
Have a nice day
Dave
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Generally the current code generators are intended to be replaced with more modern and easy to modify approach yet delivering it may still require some time.
Anyway copying implementation to the output is not complicated so I added it to the just posted Cpp module ver 1.3.2 in the DailiesAndNighties folder.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
View and moderate all "General Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Discussion"
Hi to all.
I'm drawing an application in order to generate the C++ code.
I would like to write the operations implementation and I added the code into "Tagged Values\UMLStandard\Implementation" dialog but the generated code contains empty operation implementations.
I have code like this:
double get()
{
}
instead of:
double get()
{
operation;
operation;
...
return value;
}
How I have to implement the operations?
Thanks a lot
Dave
Such functionality is not available. The current code generators provide just empty function stubs.
View and moderate all "General Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Discussion"
Ok, thanks for your response.
Could be a useful feature to be implemented in a future release.
I don't know Delphi but I think that using the "Tagged Values" approach could be easily implemented.
Have a nice day
Dave
Generally the current code generators are intended to be replaced with more modern and easy to modify approach yet delivering it may still require some time.
Anyway copying implementation to the output is not complicated so I added it to the just posted Cpp module ver 1.3.2 in the DailiesAndNighties folder.
View and moderate all "General Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Discussion"
Thanks. This is a function that I have been waiting for!