Salome HOME
67b62b89b8bd503b10ac678567a9bd5149a2f367
[modules/med.git] / src / MEDMEM / MEDMEM_TopLevel.hxx
1 // Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 #ifndef __MEDMEM_TOPLEVEL_HXX__
24 #define __MEDMEM_TOPLEVEL_HXX__
25
26 #include "MEDMEM_FieldForward.hxx"
27 #include "MEDMEM_Exception.hxx"
28 #include <string>
29
30 namespace MEDMEM
31 {
32   class MED;
33   class MESH;
34 }
35
36 namespace MEDMEM
37 {
38   //read part
39   MEDMEM_EXPORT MESH *readMeshInFile(const std::string& fileName, const std::string& meshName);
40   template<class T>
41   FIELD<T> *readFieldInFile(const std::string& fileName, const std::string& fieldName);
42   //write part
43   MEDMEM_EXPORT void writeMeshToFile(const MESH *meshObj, const std::string& fileName);
44   template<class T>
45   void writeFieldToFile(const FIELD<T> *fieldObj, const std::string& fileName);
46 }
47
48 #include "MEDMEM_Field.hxx"
49
50 namespace MEDMEM
51 {
52   template<class T>
53   FIELD<T> *readFieldInFile(const std::string& fileName, const std::string& fieldName)
54   {
55     FIELD<T> *ret=new FIELD<T>();
56     ret->setName(fieldName);
57     driverTypes type=DRIVERFACTORY::deduceDriverTypeFromFileName(fileName);
58     int id=ret->addDriver(type,fileName,fieldName);
59     ret->read(id);
60     return ret;
61   }
62   
63   template<class T>
64   void writeFieldToFile(const FIELD<T> *fieldObj, const std::string& fileName)
65   {
66     FIELD<T> *fieldObjNoC=(FIELD<T> *)fieldObj;
67     driverTypes type=DRIVERFACTORY::deduceDriverTypeFromFileName(fileName);
68     int id=fieldObjNoC->addDriver(type, fileName, fieldObj->getName());
69     fieldObjNoC->write(id);
70   }
71 }
72
73 #endif