X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/5011aa3becbb472fa53a6e531d9d0212b0c4a3da..75fc8671809ed40a2bc14d463f1068cefcc82140:/tools/doxygen/toc_create.pl diff --git a/tools/doxygen/toc_create.pl b/tools/doxygen/toc_create.pl index a4dba12c6a..0eff98dc4f 100755 --- a/tools/doxygen/toc_create.pl +++ b/tools/doxygen/toc_create.pl @@ -1,6 +1,6 @@ #!/usr/bin/perl -w -($#ARGV >= 1) or die "Usage: index_create.pl "; +($#ARGV >= 1) or die "Usage: toc_create.pl "; my(@toc); my($level,$label,$name); @@ -63,20 +63,3 @@ while($current_level>-1) { } print OUTPUT "\n"; - -# foreach $type qw(define enumeration enumvalue function typedef) { -# if(defined $database{$type}) { -# print OUTPUT "

$type

\n
    \n"; -# foreach $name (sort keys %{$database{$type}}) { -# if($type eq "function") { -# print OUTPUT "\t
  • $name()
  • \n"; -# } else { -# print OUTPUT "\t
  • #$name
  • \n"; -# } -# } -# print OUTPUT "\n
\n"; -# } -# } -# print OUTPUT "*/"; -# close OUTPUT; -