You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for creating neogen. I really love using it. It makes doxygen documenting code so easy. Literally saves hours.
Currently you support the default style of doxygen comments for c/c++ i.e /* doxygen comments here */
Could you please also support /// based comments?
For example, something like this:
////// Subdivide the given node, and create 8 child nodes////// @param iLevelIdx : level index of parent node/// @param iSelfIdx : self index of parent node/// @param id : thread id///voidSubdivideNode(const oxint iLevelIdx, const oxint iSelfIdx, const oxint id);
////// Set the required values of the newly created child nodes////// @param iParentLevelIdx : level index of parent node/// @param iParentIdx : self index of parent node/// @param iSelfIdx : self index of current child node/// @param iSiblingIdx : sibling index of current child node/// @param id : thread id///voidSetChildNode(
const oxint iParentLevelIdx, const oxint iParentIdx,
const oxint iSelfIdx, const oxint iSiblingIdx, const oxint id);
This style of comments is actually preferred by many c/c++ devs and it would be amazing if you could support it.
Thanks
The text was updated successfully, but these errors were encountered:
Hello,
Thanks for creating neogen. I really love using it. It makes doxygen documenting code so easy. Literally saves hours.
Currently you support the default style of doxygen comments for c/c++ i.e
/* doxygen comments here */
Could you please also support
///
based comments?For example, something like this:
This style of comments is actually preferred by many c/c++ devs and it would be amazing if you could support it.
Thanks
The text was updated successfully, but these errors were encountered: