Salome HOME
Add support for tetra, pyramid and prism
[modules/smesh.git] / src / DriverDAT / DriverDAT_R_SMESHDS_Mesh.cxx
1 //  SMESH DriverDAT : driver to read and write 'dat' files
2 //
3 //  Copyright (C) 2003  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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : DriverDAT_R_SMESHDS_Mesh.cxx
25 //  Module : SMESH
26
27 using namespace std;
28 #include "DriverDAT_R_SMESHDS_Mesh.h"
29 #include "DriverDAT_R_SMDS_Mesh.h"
30
31 #include "utilities.h"
32
33 DriverDAT_R_SMESHDS_Mesh::DriverDAT_R_SMESHDS_Mesh()
34 {
35         ;
36 }
37
38 DriverDAT_R_SMESHDS_Mesh::~DriverDAT_R_SMESHDS_Mesh()
39 {
40         ;
41 }
42
43 void DriverDAT_R_SMESHDS_Mesh::SetMesh(SMDS_Mesh * aMesh)
44 {
45         //myMesh = SMESHDS_Mesh *::DownCast(aMesh);
46         myMesh = aMesh;
47 }
48
49 void DriverDAT_R_SMESHDS_Mesh::SetFile(string aFile)
50 {
51         myFile = aFile;
52 }
53
54 void DriverDAT_R_SMESHDS_Mesh::SetFileId(FILE * aFileId)
55 {
56         myFileId = aFileId;
57 }
58
59 void DriverDAT_R_SMESHDS_Mesh::SetMeshId(int aMeshId)
60 {
61         myMeshId = aMeshId;
62 }
63
64 void DriverDAT_R_SMESHDS_Mesh::Add()
65 {
66         ;
67 }
68
69 void DriverDAT_R_SMESHDS_Mesh::Read()
70 {
71         string myClass = string("SMDS_Mesh");
72         string myExtension = string("DAT");
73
74         MESSAGE("in DriverDAT_R_SMESHDS_Mesh::Read() 1");
75         DriverDAT_R_SMDS_Mesh *myReader = new DriverDAT_R_SMDS_Mesh;
76
77         MESSAGE("in DriverDAT_R_SMESHDS_Mesh::Read() 2");
78         myReader->SetMesh(myMesh);
79         MESSAGE("in DriverDAT_R_SMESHDS_Mesh::Read() 3");
80         myReader->SetFile(myFile);
81         //myReader->SetFileId(myFileId);
82
83         MESSAGE("in DriverDAT_R_SMESHDS_Mesh::Read() 4");
84         myReader->Read();
85
86 }