开发者

create sections in class pages with doxygen

开发者 https://www.devze.com 2023-03-14 12:39 出处:网络
I want to document a class that has many methods. My methods are grouped: for example, I\'ve four methods that allows me to change the shape of a geometric form, other five methods that allows me to f

I want to document a class that has many methods. My methods are grouped: for example, I've four methods that allows me to change the shape of a geometric form, other five methods that allows me to fill the sh开发者_StackOverflow社区ape, and so on.

I'd like to know if there's a way to use something like '@section' for my purpouse, because in doxygen documentation (http://www.doxygen.nl/manual/commands.html#cmdsection) I've seen that this command work only in related page documentation.

How can I create logical section for classes?

Thanks in advance for your replies.


Have a look at @name, which is specifically made to group methods.

Alternatively you can use @defgroup and @addtogroup if you want the group of methods to appear on a separate page.

See http://www.doxygen.org/grouping.html for examples of both commands.

0

精彩评论

暂无评论...
验证码 换一张
取 消