return res;
}
+//=============================================================================
+/*!
+ * SMESH_Hypothesis_i::GetEntry()
+ */
+//=============================================================================
+char* SMESH_Hypothesis_i::GetEntry()
+{
+ return NULL;
+}
+
+//=============================================================================
+/*!
+ * SMESH_Hypothesis_i::GetComponent()
+ */
+//=============================================================================
+char* SMESH_Hypothesis_i::GetComponent()
+{
+ return CORBA::string_dup( "SMESH" );
+}
+
+//=============================================================================
+/*!
+ * SMESH_Hypothesis_i::IsValid()
+ */
+//=============================================================================
+char* SMESH_Hypothesis_i::IsValid()
+{
+ return true;
+}
+
//=============================================================================
/*!
* SMESH_Hypothesis_i::SetParameters()
return NULL;
}
+//=============================================================================
+/*!
+ * SMESH_Hypothesis_i::Update()
+ *
+ */
+//=============================================================================
+void SMESH_Hypothesis_i::Update( SALOME::Notebook_ptr theNotebook )
+{
+}
+
//=============================================================================
/*!
* SMESH_Hypothesis_i::GetImpl
// Get unique id of hypothesis
CORBA::Long GetId();
+ // ...
+ virtual char* GetEntry();
+
+ // ...
+ virtual char* GetComponent();
+
+ // ...
+ virtual CORBA::Boolean IsValid();
+
// Set list of parameters, used for Hypothesis creation
virtual void SetParameters( SALOME::Notebook_ptr theNotebook, const SALOME::StringArray& theParameters );
// Return list of notebook variables used for Hypothesis creation
virtual SALOME::StringArray* GetParameters();
+ // ...
+ virtual void Update( SALOME::Notebook_ptr theNotebook );
+
//Return true if hypothesis was published in study
bool IsPublished();
}
}
+//=============================================================================
+/*!
+ * \brief ...
+ */
+//=============================================================================
+char* SMESH_Mesh_i::GetEntry()
+{
+ return NULL;
+}
+
+//=============================================================================
+/*!
+ * \brief ...
+ */
+//=============================================================================
+char* SMESH_Mesh_i::GetComponent()
+{
+ return CORBA::string_dup( "SMESH" );
+}
+
+//=============================================================================
+/*!
+ * \brief ...
+ */
+//=============================================================================
+char* SMESH_Mesh_i::IsValid()
+{
+ return true;
+}
+
//=============================================================================
/*!
* \brief Sets list of notebook variables used for Mesh operations separated by ":" symbol
return NULL;
}
+//=============================================================================
+/*!
+ * \brief ...
+ */
+//=============================================================================
+void SMESH_Mesh_i::Update( SALOME::Notebook_ptr theNotebook )
+{
+}
+
//=============================================================================
/*!
* \brief Returns statistic of mesh elements