var fDesc=new Array(); fDesc[0] = "CppDoc generates HTML documentation for your C++ classes, based on your source code and special comments embedded within it. It supports JavaDoc tags (@see, @return, etc.) and can produce JavaDoc-style output, including class hierarchies, a master index, and a deprecations list. The documentation comments are optional; if you leave them out, CppDoc will still generate a full set of documentation based on class relationships and hierarchy."; 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 = ''; } }