I have a large enum (a couple of hundred entries), whose members need
documenting and whose members could do to be grouped into several
categories. So I tried to create some member groups:
enum MyEnum {
///@name First Group
//@{
/// Description of first item
FirstItem,
/// Description of second item
SecondItem,
//@}
///@name Second Group
//@{
/// Description of third item
ThirdItem,
And so on.
However, no groups appeared so I assume I'm not allowed to group the
members of an enum. Am I doing something wrong, or can I suggest that this
would be a useful feature?
Leon
**********************************************************************
Symbian Ltd is a company registered in England and Wales with registered number 01796587 and registered office at 19 Harcourt Street, London, W1H 4HF, UK.
This message is intended only for use by the named addressee and may contain privileged and/or confidential information. If you are not the named addressee you should not disseminate, copy or take any action in reliance on it. If you have received this message in error please notify pos...@sy... and delete the message and any attachments accompanying it immediately. Symbian does not accept liability for any corruption, interception, amendment, tampering or viruses occurring to this message in transit or for any message sent by its employees which is not in compliance with Symbian corporate policy.
**********************************************************************
|