Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
improve the documentation for the MSG_task_[send|receive]_* functions
[simgrid.git] / tools / doxygen / index_create.pl
index 857fa1b..b947465 100755 (executable)
@@ -39,13 +39,15 @@ open OUTPUT,"> $output";
 print OUTPUT <<EOF;
 /** \\defgroup API_index Index of the API
   * \\ingroup SimGrid_API
+  * \\brief The alphabetical list of all functions, macros and types 
+  *  defined by SimGrid
   *
   * List of all functions, variables, defines, enums, and typedefs with
-  * links to their documentation.
+  * links to the files they belong to.
 
 EOF
 
-foreach $type qw(define enumeration enumvalue function typedef) {
+foreach $type (qw(define enumeration enumvalue function typedef)) {
     if(defined $database{$type}) {
        print OUTPUT "<h2>$type</h2> \n  <ul>\n";
        foreach $name (sort keys %{$database{$type}}) {