Salome HOME
sources v1.2
[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 DriverDAT_R_SMESHDS_Mesh::~DriverDAT_R_SMESHDS_Mesh() {
38 ;
39 }
40
41 void DriverDAT_R_SMESHDS_Mesh::SetMesh(Handle(SMDS_Mesh)& aMesh) {
42   //myMesh = Handle(SMESHDS_Mesh)::DownCast(aMesh);
43   myMesh = aMesh;
44 }
45
46 void DriverDAT_R_SMESHDS_Mesh::SetFile(string aFile) {
47   myFile = aFile;
48 }
49
50 void DriverDAT_R_SMESHDS_Mesh::SetFileId(FILE* aFileId) {
51   myFileId = aFileId;
52 }
53
54 void DriverDAT_R_SMESHDS_Mesh::SetMeshId(int aMeshId) {
55   myMeshId = aMeshId;
56 }
57
58 void DriverDAT_R_SMESHDS_Mesh::Add() {
59   ;
60 }
61
62 void DriverDAT_R_SMESHDS_Mesh::Read() {
63   string myClass = string("SMDS_Mesh");
64   string myExtension = string("DAT");
65
66   MESSAGE("in DriverDAT_R_SMESHDS_Mesh::Read() 1");
67   DriverDAT_R_SMDS_Mesh* myReader = new DriverDAT_R_SMDS_Mesh;
68
69   MESSAGE("in DriverDAT_R_SMESHDS_Mesh::Read() 2");
70   myReader->SetMesh(myMesh);
71   MESSAGE("in DriverDAT_R_SMESHDS_Mesh::Read() 3");
72   myReader->SetFile(myFile);
73   //myReader->SetFileId(myFileId);
74
75   MESSAGE("in DriverDAT_R_SMESHDS_Mesh::Read() 4");
76   myReader->Read();
77
78 }