From: mquinson Date: Tue, 6 Dec 2005 23:40:27 +0000 (+0000) Subject: Some rapid improvement of the navigation experience. It works, one has to rework... X-Git-Tag: v3.3~3481 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/64c2ed66b9addc6edb865543957dfc309fc49efc Some rapid improvement of the navigation experience. It works, one has to rework the tree to make the trip even more pleasant git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@1877 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/include/gras/datadesc.h b/include/gras/datadesc.h index 3df17d1c7c..73d697cd9e 100644 --- a/include/gras/datadesc.h +++ b/include/gras/datadesc.h @@ -18,11 +18,6 @@ SG_BEGIN_DECL() /** @addtogroup GRAS_dd Data description * @brief Describing data to be exchanged (Communication facility) * - *
Top [\ref index]::[\ref GRAS_API] - *
Prev - *
Next [\ref GRAS_sock] - *
Down [\ref GRAS_dd_basic]
- * * Since GRAS takes care of potential representation conversion when the platform is heterogeneous, * any data which transits on the network must be described beforehand. * @@ -44,9 +39,7 @@ SG_BEGIN_DECL() /** @defgroup GRAS_dd_basic Basic operations on data descriptions * @ingroup GRAS_dd - *
Top [\ref index]::[\ref GRAS_API]::[\ref GRAS_dd] - *
Prev - *
Next [\ref GRAS_dd_auto]
+ * \htmlonly \endhtmlonly * * If you only want to send pre-existing types, simply retrieve the pre-defined description with * the \ref gras_datadesc_by_name function. Existing types entail: @@ -72,9 +65,7 @@ gras_datadesc_type_t gras_datadesc_by_name(const char *name); /** @defgroup GRAS_dd_auto Automatic parsing of data descriptions * @ingroup GRAS_dd - *
Top [\ref index]::[\ref GRAS_API]::[\ref GRAS_dd] - *
Prev [\ref GRAS_dd_basic] - *
Next [\ref GRAS_dd_manual]
+ * \htmlonly \endhtmlonly * * If you need to declare a new datatype, this is the simplest way to describe it to GRAS. Simply * enclose its type definition into a \ref GRAS_DEFINE_TYPE macro call, and you're set. Here is