I updated my corporate version of EA to the 726 build. My main reason for updating, from 3.5.

, was to get improved C++ code generation. I've been searching and searching yet I can't find a way to get the latest version to produce a simple "//" comment.
The online help indicates the C++ Specifications dialog contain the comment string start/end specifiers, but this feature appears to have been removed.
The C++ Class Notes Code Template shows:
$style = %genOptCPPCommentStyle%
%if $style == "XML.NET"%
%XML_COMMENT($wrapLen)%
%elseIf $style == "JavaDoc"%
%JAVADOC_COMMENT($wrapLen)%
%else%
%CSTYLE_COMMENT($wrapLen)%
%endIf%
I'm hoping these three options are not my only choices i.e. I don't want C, JavaDoc, nor XML style comments.
Our coding standard mandates "//" style comments, so how do I get the new version to do what the old version did?
Any assistance would be greatly appreciated!