@srcdir@/../../src/INTERP_KERNEL \
@srcdir@/../../src/INTERP_KERNEL/Geometric2D \
@srcdir@/../../src/MEDCoupling \
+ @srcdir@/../../src/MEDLoader \
@srcdir@/../../src/MEDMEM
FILE_PATTERNS = MEDMEM_Mesh.* \
MEDCouplingFieldDouble.* \
MEDCouplingFieldDiscretization.* \
MEDCouplingTimeDiscretization.* \
+ MEDLoader.* \
*.dox
RECURSIVE = NO
EXCLUDE = CVS
- Chapter \ref medcoupling describes DataStructures used for cross
process exchange of meshes and fields.
- Chapter \ref paramedmem describes its MPI implementation, which is called %ParaMEDMEM.
+- Chapter \ref medloader describes API for I/O from or to a MED file
+coming from a \ref medcoupling data structure.
- Chapter \ref tools describes various tools based on MEDMEM that can
be helpful for handling MED files (conversion tools and splitting tools).
--- /dev/null
+/*!
+\page medloader MEDLoader
+
+\section MEDLoaderIntro Introduction
+
+MEDLoader is a package in charge of loading a file or write to a file
+in MED format a \ref medcoupling data structure. The fact that these
+functionalities are not merged in \ref medcoupling is explained by the
+fact of reducing as much as possible the dependancies of \ref
+medcoupling libraries.
+
+The main aim of this package is to propose as much as possible a
+complete API in order to fetch data from a MED file. As a MED file can
+combine several \ref medcoupling aspects in one (for exemple
+unstructured meshes) the API of MEDLoader is much more rich than
+simply read and write.
+
+*/