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=5daf49d45de3f8efa8e7bb9f0af55530a9cae53c;hpb=7cc10462f437d6dfadfec62ede7af7e1a53bd520;p=modules%2Fhomard.git diff --git a/src/HOMARD/HOMARD_Cas.cxx b/src/HOMARD/HOMARD_Cas.cxx index 5daf49d4..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-2015 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 ) @@ -164,7 +164,7 @@ const int HOMARD_Cas::GetConfType() const //============================================================================= void HOMARD_Cas::SetExtType( int ExtType ) { -// VERIFICATION( (ExtType>=0) && (ExtType<=1) ); +// VERIFICATION( (ExtType>=0) && (ExtType<=2) ); _ExtType = ExtType; } //============================================================================= @@ -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 ); }