Salome HOME
Copyrights update
[modules/med.git] / doc / MEDMEM / MEDMEM_InvokingDriverAtObjectCreationTime.cxx
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 // 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either 
7 // version 2.1 of the License.
8 // 
9 // This library is distributed in the hope that it will be useful 
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public  
15 // License along with this library; if not, write to the Free Software 
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/
19 //
20 #include "MEDMEM_Exception.hxx"
21 #include "MEDMEM_define.hxx"
22
23 #include "MEDMEM_Field.hxx"
24 #include "MEDMEM_Mesh.hxx"
25 #include "MEDMEM_Med.hxx"
26
27 using namespace MEDMEM ;
28 using namespace MED_EN ;
29
30 main () {
31   
32   const char * fileName  = "pointe.med";
33   const char * fieldName = "fieldcelldouble";
34   const char * meshName  = "maa1";
35   
36   try {
37     
38     // Test creation of drivers at object Creation time
39
40     //This test failed due to inadequate Support implementation   
41     // FIELD<double> myField (MED_DRIVER,fileName,fieldName); 
42     MESH          myMesh  (MED_DRIVER,fileName,meshName);
43     MED           myMed   (MED_DRIVER,fileName);
44
45     // Test removal of drivers
46     //myField.rmDriver();
47     myMesh.rmDriver ();
48     myMed.rmDriver  ();
49
50   } catch (MEDEXCEPTION& ex){
51     MESSAGE(ex.what()) ;
52   }
53 }