X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FDriverUNV%2FDriverUNV_R_SMESHDS_Mesh.cxx;h=752e786e436bdd5f1beaaaf6f5639e4bf3f370c6;hp=849a523d0e6be60ab84d3377514d62dcd5546764;hb=8d2ecd75b04ac82778c48882c4f19d4561be0985;hpb=49b22b1c40b88469c8f2dace3fcb278dd83528a9 diff --git a/src/DriverUNV/DriverUNV_R_SMESHDS_Mesh.cxx b/src/DriverUNV/DriverUNV_R_SMESHDS_Mesh.cxx index 849a523d0..752e786e4 100644 --- a/src/DriverUNV/DriverUNV_R_SMESHDS_Mesh.cxx +++ b/src/DriverUNV/DriverUNV_R_SMESHDS_Mesh.cxx @@ -4,45 +4,53 @@ using namespace std; #include "utilities.h" -DriverUNV_R_SMESHDS_Mesh::DriverUNV_R_SMESHDS_Mesh() { -; +DriverUNV_R_SMESHDS_Mesh::DriverUNV_R_SMESHDS_Mesh() +{ + ; } -DriverUNV_R_SMESHDS_Mesh::~DriverUNV_R_SMESHDS_Mesh() { -; +DriverUNV_R_SMESHDS_Mesh::~DriverUNV_R_SMESHDS_Mesh() +{ + ; } -void DriverUNV_R_SMESHDS_Mesh::SetMesh(Handle(SMDS_Mesh)& aMesh) { - //myMesh = Handle(SMESHDS_Mesh)::DownCast(aMesh); - myMesh = aMesh; +void DriverUNV_R_SMESHDS_Mesh::SetMesh(SMDS_Mesh * aMesh) +{ + //myMesh = SMESHDS_Mesh *::DownCast(aMesh); + myMesh = aMesh; } -void DriverUNV_R_SMESHDS_Mesh::SetFile(string aFile) { - myFile = aFile; +void DriverUNV_R_SMESHDS_Mesh::SetFile(string aFile) +{ + myFile = aFile; } -void DriverUNV_R_SMESHDS_Mesh::SetFileId(FILE* aFileId) { - myFileId = aFileId; +void DriverUNV_R_SMESHDS_Mesh::SetFileId(FILE * aFileId) +{ + myFileId = aFileId; } -void DriverUNV_R_SMESHDS_Mesh::SetMeshId(int aMeshId) { - myMeshId = aMeshId; +void DriverUNV_R_SMESHDS_Mesh::SetMeshId(int aMeshId) +{ + myMeshId = aMeshId; } -void DriverUNV_R_SMESHDS_Mesh::Add() { - ; +void DriverUNV_R_SMESHDS_Mesh::Add() +{ + ; } -void DriverUNV_R_SMESHDS_Mesh::Read() { - string myClass = string("SMDS_Mesh"); - string myExtension = string("UNV"); +void DriverUNV_R_SMESHDS_Mesh::Read() +{ + string myClass = string("SMDS_Mesh"); + string myExtension = string("UNV"); - DriverUNV_R_SMDS_Mesh* myReader = new DriverUNV_R_SMDS_Mesh; + DriverUNV_R_SMDS_Mesh *myReader = new DriverUNV_R_SMDS_Mesh; - myReader->SetMesh(myMesh); - myReader->SetFile(myFile); - //myReader->SetFileId(myFileId); + myReader->SetMesh(myMesh); + myReader->SetFile(myFile); + //myReader->SetFileId(myFileId); - myReader->Read(); + myReader->Read(); }