Is it possible to create a custom object type in Doxygen? -
i want use doxygen document http api , have descriptions of http queries parameters, return results etc similar description of classes. need \query structural command can followed \brief, \param, \return , on , have corresponding tab "queries" in top navigation menu. in other words need 100% replication of \class different name. possible , how?
don't think possible cleanly hope for, way accomplish using groups.
/** * \defgroup query queries */ then document each query group in query group
/** * \defgroup getuser user id * \ingroup query * \brief brief * \param id user id * \return user given id */ now need add tab query group in navigation menu.
first generate doxygen layout file using doxygen -l. in doxyfile set layoutfile = doxygenlayout.xml.
finally change doxygenlayout.xml file add new tab:
<navindex> ... <tab type="user" visible="yes" title="queries" url="@ref query" intro=""/>
Comments
Post a Comment