Help with Doxygen and C structs
- From: "J. Bourne" <none@xxxxxxxx>
- Date: Mon, 23 Jul 2007 21:32:01 -0700
Hello,
I'm trying to use Doxygen to document the source of a project I'm
working on in C. The problem I'm having is correctly documenting
self-referential structs. For instance, we have a struct like the
following:
typedef struct _User {
/* ... stuff ... */
struct _User *next_user;
} User;
When documenting the struct and its variables, Doxygen calls the
structure "_User" in the output, instead of the prefered "User".
Is there a way to force Doxygen to identify the struct as "User" instead
of "_User"?
I haven't been able to find anything in Doxygen's documentation that
addresses this issue.
Thanks,
JB
.
- Follow-Ups:
- Re: Help with Doxygen and C structs
- From: gabriele . svelto
- Re: Help with Doxygen and C structs
- From: J. Bourne
- Re: Help with Doxygen and C structs
- Prev by Date: Re: Bignum looses precision too fast?
- Next by Date: Re: Help with Doxygen and C structs
- Previous by thread: Bignum looses precision too fast?
- Next by thread: Re: Help with Doxygen and C structs
- Index(es):
Relevant Pages
|