Re: [DOC++] enum member documentation
Brought to you by:
adragos
From: Andreas H. <ah...@br...> - 2003-03-24 09:10:43
|
On Saturday 22 March 2003 15:40, ber...@gm... wrote: > Moreover, doc++ only lists the last item of the enum definition. > It would be desirable to have something like this: > > /// this is my enum type, which can be used for some funky purpose > typedef enum > { > item_1, /// used for tiddelypush > item_2, /// triggers whatnot > ... > item n /// make you dizzy > > } TMyEnumType; Do it like this: /// this is my enum type, which can be used for some funky purpose enum foo { /// used for tiddelypush item_1, /// triggers whatnot item_2, ... /// make you dizzy item n }; best regards Andreas --=20 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =09 ... ... Andreas C. M. Huennebeck . * . . Software Engineer . . . . Bruker BioSpin GmbH B R U K E R D-76287 Rheinstetten, Germany . . . . Tel : +49 (721) 5161-444 . * . . Fax : +49 (721) 5161-480 ... ... email: And...@br...=09=09 GPG-Key: http://www.bruker.de/~ah/public_keys/ah.asc PGP-Key: http://www.bruker.de/~ah/public_keys/pgp_ah.as= c =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D |