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

Popular posts from this blog

php - How to display all orders for a single product showing the most recent first? Woocommerce -

asp.net - How to correctly use QUERY_STRING in ISAPI rewrite? -

angularjs - How restrict admin panel using in backend laravel and admin panel on angular? -