Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
use an automatic table of contents instead of a manual one
[simgrid.git] / doc / doxygen / inside_extending.doc
index bf38712..ba660ff 100644 (file)
@@ -1,10 +1,7 @@
 /*!
 \page inside_extending Extending SimGrid
 
-We start to put TAGS in simgrid source code for having tutorials to see where is the important parts ans steps to create:
-\li \ref simgrid_dev_guide_api
-\li \ref simgrid_dev_guide_model
-\li \ref simgrid_dev_guide_tag
+\tableofcontents
 
 \section simgrid_dev_guide_api How to add a new MSG function?
 Search for expression \"TUTORIAL: New API\".
@@ -79,7 +76,7 @@ s_surf_model_description_t surf_cpu_model_description[] = {
   {"Plop",
    "The new plop CPU model.",
    surf_cpu_model_init_plop},
-  {NULL, NULL,  NULL}      /* this array must be NULL terminated */
+  {NULL, NULL, NULL}      // this array must be NULL terminated
 };
 ~~~~
 
@@ -134,7 +131,7 @@ s_surf_model_description_t surf_plugin_description[] = {
                   {"MyNetworkPlugin",
                    "My network plugin.",
                    sg_my_network_plugin_init},
-                  {NULL, NULL,  NULL}      /* this array must be NULL terminated */
+                  {NULL, NULL, NULL}      // this array must be NULL terminated
 };
 ~~~~