var fDesc=new Array(); fDesc[0] = "Code Visualizer makes C/C++ source code to visual based diagram.
You can easily understand source code's architecture by using Code Visualizer.
There is several functions to show diagram.
You can see the list of class, struct, union, namespace by Macro-view.
You can see the logic's flow diagram of a method.
You can see the logic's NSD(Nassi-Shneiderman Diagrams).
You can see inheritance, reference and use relation of class.
Code Visualizer also include analysis and summarize project's statistics.
Other part of a function, you can set diagram's color, font, etc.."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }