Can anyone tell me if it's possible to force Together (I'm using T2006 R2 for Eclipse) to write the "parameters" and "return type" properties of a method to the generated C++ header file. e.g.
Properties tab:
Property Value
-------- -----
parameters int myParam1, int myParam2
return type int
I'd like to see the parameters and return type in MyClass.h
/**
* @param myParam1
* @param myParam2
* @return int
*/
int myOperation(int myParam1, int myParam2);
Is it possible to specify which properties are written to the header file?
Thanks,
John B.
"John B" <john...@freeuk.com> wrote in message
news:469ceeb9$1...@newsgroups.borland.com...
int myOperation(int myParam1, int myParam2);
BUT, the 'javadoc' comments DO NOT contain the tags '@param' and '@return'. i.e. I'd like to see:
/**
* @param myParam1
* @param myParam2
* @return int
*/
int myOperation(int myParam1, int myParam2);
But all I see is:
/**
*/
int myOperation(int myParam1, int myParam2);
I know this functionality exists for Java modelling projects and I'd like to use the same concepts for my C++ modelling project.
Thanks,
John B.
"John B" <john...@freeuk.com> wrote in message
news:46b6fab6$1...@newsgroups.borland.com...