/ Published in: Bash
URL: http://www.myoutsourcedbrain.com/2009/08/mex-function-for-mahalanobis-function.html
bash 3-line shell script for visualization of c++ class dependencies with graphviz. Please see my blog post for details and leave comments there.
Expand |
Embed | Plain Text
echo "digraph G {"> diagram.dot sed -n -e "s/class [ ]*\([a-zA-Z0-9_]*\)[ ]*:[ ]*public [ ]*\([a-zA-Z0-9_]*\)[ ]*[{][ ]*/\1 -> \2 ;/p" *.h >> diagram.dot echo "}" >> diagram.dot
You need to login to post a comment.
