X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSMESH_I%2FSMESH_Hypothesis_i.cxx;h=28eda61b2c79e63ab5d8da7c4119772dcb340d57;hb=6fdc7dc872210feb3672f429545b996698e0932f;hp=87c16ee4e12632f9d244c58df93a0ab917667a16;hpb=c3bf92bd87b770fd81631a3853f7f5bb1ac6a4e8;p=modules%2Fsmesh.git diff --git a/src/SMESH_I/SMESH_Hypothesis_i.cxx b/src/SMESH_I/SMESH_Hypothesis_i.cxx index 87c16ee4e..28eda61b2 100644 --- a/src/SMESH_I/SMESH_Hypothesis_i.cxx +++ b/src/SMESH_I/SMESH_Hypothesis_i.cxx @@ -17,7 +17,7 @@ // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // -// See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // // // @@ -26,12 +26,13 @@ // Module : SMESH // $Header$ -using namespace std; #include #include #include "SMESH_Hypothesis_i.hxx" #include "utilities.h" +using namespace std; + //============================================================================= /*! * SMESH_Hypothesis_i::SMESH_Hypothesis_i @@ -43,9 +44,10 @@ using namespace std; SMESH_Hypothesis_i::SMESH_Hypothesis_i( PortableServer::POA_ptr thePOA ) : SALOME::GenericObj_i( thePOA ) { - MESSAGE( "SMESH_Hypothesis_i::SMESH_Hypothesis_i" ); + MESSAGE( "SMESH_Hypothesis_i::SMESH_Hypothesis_i / Début" ); myBaseImpl = 0; - thePOA->activate_object( this ); + + MESSAGE( "SMESH_Hypothesis_i::SMESH_Hypothesis_i / Fin" ); }; //============================================================================= @@ -73,7 +75,7 @@ SMESH_Hypothesis_i::~SMESH_Hypothesis_i() char* SMESH_Hypothesis_i::GetName() { - MESSAGE( "SMESH_Hypothesis_i::GetName" ); + //MESSAGE( "SMESH_Hypothesis_i::GetName" ); return CORBA::string_dup( myBaseImpl->GetName() ); }; @@ -129,7 +131,7 @@ CORBA::Long SMESH_Hypothesis_i::GetId() ::SMESH_Hypothesis* SMESH_Hypothesis_i::GetImpl() { - MESSAGE( "SMESH_Hypothesis_i::GetImpl" ); + //MESSAGE( "SMESH_Hypothesis_i::GetImpl" ); return myBaseImpl; }