how to exclude private methods from graphviz/doxygen?
EXTRACT_PRIVATE = NO
seems to only开发者_开发问答 relate to the documentation, not the graphing. When using UML_LOOK = YES
it includes private methods.
Is there a way to create dot collaboration/class diagrams via graphviz but no include private methods as the diagrams are massive?
If I set UML_LOOK = NO
it only produces basic class diagrams with the class name and the look isn't what I want.
I'm afraid this is not possible using UML_LOOK (or if it is, I have yet to find out how).
You could generate your own dot diagrams or use a slightly more powerful/adapted tool, like PlantUML. It's a lot more work on your part, but you'll obviously get what you want.
精彩评论