X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FDriverUNV%2FDriverUNV_W_SMDS_Mesh.h;h=82b2bcd96c90ea715aa68c8431ebba5358e936a0;hp=141ab21db190bbfb18c82cc00e4d7fe580b57a7c;hb=8d2ecd75b04ac82778c48882c4f19d4561be0985;hpb=bef9beee88cac57394b8dc3bc914381c1a2fff83 diff --git a/src/DriverUNV/DriverUNV_W_SMDS_Mesh.h b/src/DriverUNV/DriverUNV_W_SMDS_Mesh.h index 141ab21db..82b2bcd96 100644 --- a/src/DriverUNV/DriverUNV_W_SMDS_Mesh.h +++ b/src/DriverUNV/DriverUNV_W_SMDS_Mesh.h @@ -7,25 +7,24 @@ #include "SMDS_Mesh.hxx" #include "Mesh_Writer.h" -class DriverUNV_W_SMDS_Mesh : public Mesh_Writer { +class DriverUNV_W_SMDS_Mesh:public Mesh_Writer +{ - public : - DriverUNV_W_SMDS_Mesh(); - ~DriverUNV_W_SMDS_Mesh(); + public:DriverUNV_W_SMDS_Mesh(); + ~DriverUNV_W_SMDS_Mesh(); - void Add(); - void Write(); - void SetMesh(Handle(SMDS_Mesh)& aMesh); - void SetFile(string); + void Add(); + void Write(); + void SetMesh(SMDS_Mesh * aMesh); + void SetFile(string); - void SetFileId(FILE*); - void SetMeshId(int); + void SetFileId(FILE *); + void SetMeshId(int); -private : - Handle_SMDS_Mesh myMesh; - string myFile; - FILE* myFileId; - int myMeshId; + private: SMDS_Mesh * myMesh; + string myFile; + FILE *myFileId; + int myMeshId; }; #endif