Re: [Doxygen-users] How do I create a Doxygen Alias to mimic the @param behavior
Brought to you by:
dimitri
From: Ron W. <ron...@gm...> - 2011-12-20 18:25:05
|
On Sun, Dec 18, 2011 at 6:01 AM, <dox...@li...> wrote: > Date: Fri, 16 Dec 2011 13:45:06 -0700 > From: Eric Cope <eri...@gm...> > Subject: [Doxygen-users] How do I create a Doxygen Alias to mimic the > @param behavior? > > Hello all, > I want to create an alias of @param for global variables used within a > function. I'd like to specify it like this: > > @global[in] global_var_name more textual description > @global[in] global_var_name2 some more text > @global[in/out] name_var_3 more text > @global[out] name_var_4 more text > > I've created an alias using this: > > ALIASES = "global=\xrefitem global \"Global\" \"Globals\" " > The following worked for me: ALIASES = "global{1}=@param [global \1]" |