X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHOMARD%2FHOMARD_Cas.cxx;h=4b67d08cda5b76902acdf9aee98ece1c6a66db3a;hb=refs%2Ftags%2FV9_13_0b1;hp=9e23c1ceede2da695f941fb7408ddc7e715444b0;hpb=672f3848526cf74e0e734900b562205b5c0fc329;p=modules%2Fhomard.git diff --git a/src/HOMARD/HOMARD_Cas.cxx b/src/HOMARD/HOMARD_Cas.cxx index 9e23c1ce..4b67d08c 100644 --- a/src/HOMARD/HOMARD_Cas.cxx +++ b/src/HOMARD/HOMARD_Cas.cxx @@ -1,6 +1,6 @@ // HOMARD HOMARD : implementation of HOMARD idl descriptions // -// Copyright (C) 2011-2016 CEA/DEN, EDF R&D +// Copyright (C) 2011-2024 CEA, EDF // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public @@ -109,11 +109,11 @@ std::string HOMARD_Cas::GetDumpPython() const //============================================================================= int HOMARD_Cas::SetDirName( const char* NomDir ) { - MESSAGE("SetDirName, NomDir : "< 1 ) { erreur = 1 ; } // Creation if ( CHDIR(NomDir) == 0 ) @@ -220,10 +220,17 @@ void HOMARD_Cas::SupprGroups() // Les frontieres // //============================================================================= +void HOMARD_Cas::AddBoundary( const char* Boundary ) +{ +// MESSAGE ( ". HOMARD_Cas::AddBoundary : Boundary = " << Boundary ); + const char* Group = ""; + AddBoundaryGroup( Boundary, Group ); +} +//============================================================================= void HOMARD_Cas::AddBoundaryGroup( const char* Boundary, const char* Group ) { -// MESSAGE ( ". AddBoundaryGroup : Boundary = " << Boundary ); -// MESSAGE ( ". AddBoundaryGroup : Group = " << Group ); +// MESSAGE ( ". HOMARD_Cas::AddBoundaryGroup : Boundary = " << Boundary ); +// MESSAGE ( ". HOMARD_Cas::AddBoundaryGroup : Group = " << Group ); _ListBoundaryGroup.push_back( Boundary ); _ListBoundaryGroup.push_back( Group ); }