]> SALOME platform Git repositories - plugins/gmshplugin.git/commitdiff
Salome HOME
Adding GetIs2d in python interface
authorYOANN AUDOUIN <B61570@dsp1062659>
Tue, 2 Jan 2024 08:51:39 +0000 (09:51 +0100)
committercesarconopoima <cesar.conopoima@opencascade.com>
Thu, 18 Jan 2024 10:40:32 +0000 (10:40 +0000)
idl/GMSHPlugin_Algorithm.idl
src/GMSHPlugin/GMSHPlugin_Hypothesis_i.cxx
src/GMSHPlugin/GMSHPlugin_Hypothesis_i.hxx

index be7e14e8ce815a576d54af7f56b1ec12478d9165..db5f50a0c28cb4369b9c458dbb6cb8a69a2c06ed 100644 (file)
@@ -111,6 +111,7 @@ module GMSHPlugin
 
     void SetVerbosityLevel(in long value);
     long GetVerbosityLevel();
+    boolean GetIs2d();
 
     void SetCompoundOnShape(in GEOM::GEOM_Object GeomObj);
     void SetCompoundOnEntry(in string entry);
index c311fe7200bf3af9442a44bbd4314b8a206cbb84..bf6eef959cbfb9c495b99b2a178d87dcbad868ce 100644 (file)
@@ -269,6 +269,9 @@ void GMSHPlugin_Hypothesis_i::SetVerbosityLevel (CORBA::Long theValue)
 CORBA::Long GMSHPlugin_Hypothesis_i::GetVerbosityLevel()
 {
   return this->GetImpl()->GetVerbosityLevel();
+CORBA::Boolean GMSHPlugin_Hypothesis_i::GetIs2d()
+{
+  return this->GetImpl()->GetIs2d();
 }
 
 void GMSHPlugin_Hypothesis_i::SetCompoundOnShape(GEOM::GEOM_Object_ptr GeomObj)
index 783626f5fd5bdfec241459706b8d12abb42ee42d..cd7fcde1d07e85b8b5d6432610579bcd72277688 100644 (file)
@@ -81,6 +81,7 @@ class GMSHPLUGIN_EXPORT GMSHPlugin_Hypothesis_i:
   void SetIs2d(CORBA::Boolean theIs2d);
   void SetVerbosityLevel(CORBA::Long theVerbLvl);
   CORBA::Long GetVerbosityLevel();
+  CORBA::Boolean GetIs2d();
 
   void SetCompoundOnShape(GEOM::GEOM_Object_ptr GeomObj);
   void SetCompoundOnEntry(const char* entry);