X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/2e904d10c3d889816d9772d5d93ea91260e5157e..ab9715778f3f345381373ce15e9da82cf5e75123:/tools/doxygen/toc_create.pl diff --git a/tools/doxygen/toc_create.pl b/tools/doxygen/toc_create.pl index 3a74f0d16c..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: toc_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; -