Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Use doxygen's section instead of my poor approximation; link to the list of all exist...
[simgrid.git] / src / xbt / dict.c
index fb87393..d541f05 100644 (file)
 
 #include <stdio.h>
 
+/** \defgroup XBT_dict A generic dictionnary 
+ *  \brief This section describes the API to a dictionnary structure
+ *  that associates as string to a void* key. It is not a hash table
+ *  and the internal data-structure rather looks like a tree.
+ */
+
 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(dict,xbt,
    "Dictionaries provide the same functionnalities than hash tables");
 /*####[ Private prototypes ]#################################################*/