Salome HOME
Merge from tetra_hpc branch
[plugins/ghs3dprlplugin.git] / src / GHS3DPRLPlugin / GHS3DPRLPlugin_Hypothesis_i.cxx
index 06ed8544435127baced064f850e51f6b9576b44b..fad504ce3cc0e49e596ab98b28d3cbd36c01916c 100755 (executable)
@@ -67,7 +67,10 @@ GHS3DPRLPlugin_Hypothesis_i::~GHS3DPRLPlugin_Hypothesis_i()
  *  GHS3DPRLPlugin_Hypothesis_i::SetNbPart
  *  GHS3DPRLPlugin_Hypothesis_i::SetKeepFiles
  *  GHS3DPRLPlugin_Hypothesis_i::SetBackground
- *  GHS3DPRLPlugin_Hypothesis_i::SetToMeshHoles
+ *  GHS3DPRLPlugin_Hypothesis_i::SetToMergeSubdomains
+ *  GHS3DPRLPlugin_Hypothesis_i::SetToTagSubdomains
+ *  GHS3DPRLPlugin_Hypothesis_i::SetToOutputInterfaces
+ *  GHS3DPRLPlugin_Hypothesis_i::SetToDiscardSubdomains
  */
 //=============================================================================
 
@@ -103,12 +106,36 @@ void GHS3DPRLPlugin_Hypothesis_i::SetBackground (CORBA::Boolean theValue)
   SMESH::TPythonDump() << _this() << ".SetBackground( " << theValue << " )";
 }
 
-void GHS3DPRLPlugin_Hypothesis_i::SetToMeshHoles (CORBA::Boolean theValue)
+void GHS3DPRLPlugin_Hypothesis_i::SetToMergeSubdomains (CORBA::Boolean theValue)
 {
-  MESSAGE("GHS3DPRLPlugin_Hypothesis_i::SetToMeshHoles");
+  MESSAGE("GHS3DPRLPlugin_Hypothesis_i::SetToMergeSubdomains");
   ASSERT(myBaseImpl);
-  this->GetImpl()->SetToMeshHoles(theValue);
-  SMESH::TPythonDump() << _this() << ".SetToMeshHoles( " << theValue << " )";
+  this->GetImpl()->SetToMergeSubdomains(theValue);
+  SMESH::TPythonDump() << _this() << ".SetToMergeSubdomains( " << theValue << " )";
+}
+
+void GHS3DPRLPlugin_Hypothesis_i::SetToTagSubdomains (CORBA::Boolean theValue)
+{
+  MESSAGE("GHS3DPRLPlugin_Hypothesis_i::SetToTagSubdomains");
+  ASSERT(myBaseImpl);
+  this->GetImpl()->SetToTagSubdomains(theValue);
+  SMESH::TPythonDump() << _this() << ".SetToTagSubdomains( " << theValue << " )";
+}
+
+void GHS3DPRLPlugin_Hypothesis_i::SetToOutputInterfaces (CORBA::Boolean theValue)
+{
+  MESSAGE("GHS3DPRLPlugin_Hypothesis_i::SetToOutputInterfaces");
+  ASSERT(myBaseImpl);
+  this->GetImpl()->SetToOutputInterfaces(theValue);
+  SMESH::TPythonDump() << _this() << ".SetToOutputInterfaces( " << theValue << " )";
+}
+
+void GHS3DPRLPlugin_Hypothesis_i::SetToDiscardSubdomains (CORBA::Boolean theValue)
+{
+  MESSAGE("GHS3DPRLPlugin_Hypothesis_i::SetToDiscardSubdomains");
+  ASSERT(myBaseImpl);
+  this->GetImpl()->SetToDiscardSubdomains(theValue);
+  SMESH::TPythonDump() << _this() << ".SetToDiscardSubdomains( " << theValue << " )";
 }
 
 //=============================================================================
@@ -117,7 +144,10 @@ void GHS3DPRLPlugin_Hypothesis_i::SetToMeshHoles (CORBA::Boolean theValue)
  *  GHS3DPRLPlugin_Hypothesis_i::GetNbPart
  *  GHS3DPRLPlugin_Hypothesis_i::GetKeepFiles
  *  GHS3DPRLPlugin_Hypothesis_i::GetBackground
- *  GHS3DPRLPlugin_Hypothesis_i::GetToMeshHoles
+ *  GHS3DPRLPlugin_Hypothesis_i::GetToMergeSubdomains
+ *  GHS3DPRLPlugin_Hypothesis_i::GetToTagSubdomains
+ *  GHS3DPRLPlugin_Hypothesis_i::GetToOutputInterfaces
+ *  GHS3DPRLPlugin_Hypothesis_i::GetToDiscardSubdomains
  */
 //=============================================================================
 
@@ -126,7 +156,7 @@ char * GHS3DPRLPlugin_Hypothesis_i::GetMEDName()
   MESSAGE("GHS3DPRLPlugin_Hypothesis_i::GetMEDName");
   ASSERT(myBaseImpl);
   CORBA::String_var c_s =
-    CORBA::string_dup(this->GetImpl()->GetMEDName().c_str());
+  CORBA::string_dup(this->GetImpl()->GetMEDName().c_str());
   return c_s._retn();
 }
 
@@ -151,11 +181,32 @@ CORBA::Boolean GHS3DPRLPlugin_Hypothesis_i::GetBackground()
   return this->GetImpl()->GetBackground();
 }
 
-CORBA::Boolean GHS3DPRLPlugin_Hypothesis_i::GetToMeshHoles()
+CORBA::Boolean GHS3DPRLPlugin_Hypothesis_i::GetToMergeSubdomains()
+{
+  MESSAGE("GHS3DPRLPlugin_Hypothesis_i::GetToMergeSubdomains");
+  ASSERT(myBaseImpl);
+  return this->GetImpl()->GetToMergeSubdomains();
+}
+
+CORBA::Boolean GHS3DPRLPlugin_Hypothesis_i::GetToTagSubdomains()
+{
+  MESSAGE("GHS3DPRLPlugin_Hypothesis_i::GetToTagSubdomains");
+  ASSERT(myBaseImpl);
+  return this->GetImpl()->GetToTagSubdomains();
+}
+
+CORBA::Boolean GHS3DPRLPlugin_Hypothesis_i::GetToOutputInterfaces()
+{
+  MESSAGE("GHS3DPRLPlugin_Hypothesis_i::GetToOutputInterfaces");
+  ASSERT(myBaseImpl);
+  return this->GetImpl()->GetToOutputInterfaces();
+}
+
+CORBA::Boolean GHS3DPRLPlugin_Hypothesis_i::GetToDiscardSubdomains()
 {
-  MESSAGE("GHS3DPRLPlugin_Hypothesis_i::GetToMeshHoles");
+  MESSAGE("GHS3DPRLPlugin_Hypothesis_i::GetToDiscardSubdomains");
   ASSERT(myBaseImpl);
-  return this->GetImpl()->GetToMeshHoles();
+  return this->GetImpl()->GetToDiscardSubdomains();
 }
 
 //=============================================================================