X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FDriverUNV%2FDriverUNV_R_SMESHDS_Mesh.cxx;h=752e786e436bdd5f1beaaaf6f5639e4bf3f370c6;hb=20911863d85832bef476bac4c7133c88e5b654f3;hp=849a523d0e6be60ab84d3377514d62dcd5546764;hpb=0b959120c59670d73c0a1f6d46bfa72a6ceb49cf;p=modules%2Fsmesh.git 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(); }