mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2025-02-03 12:20:33 +05:00
22501: [CEA 1076] Impossible to mesh at its position a translated without copy shape if the shape has already been meshed
This commit is contained in:
parent
a6fe4c1ad0
commit
f095bd1733
@ -273,6 +273,11 @@ module GEOM
|
||||
*/
|
||||
long GetType();
|
||||
|
||||
/*!
|
||||
* \brief Get value of a modification counter of the object
|
||||
*/
|
||||
long GetTick();
|
||||
|
||||
/*!
|
||||
* \brief Set a Study entry where this object was published.
|
||||
*/
|
||||
|
@ -105,6 +105,17 @@ CORBA::Long GEOM_BaseObject_i::GetType()
|
||||
return _impl->GetType();
|
||||
}
|
||||
|
||||
//=============================================================================
|
||||
/*!
|
||||
* GetTick
|
||||
*/
|
||||
//=============================================================================
|
||||
|
||||
CORBA::Long GEOM_BaseObject_i::GetTick()
|
||||
{
|
||||
return _impl->GetTic();
|
||||
}
|
||||
|
||||
//=============================================================================
|
||||
/*!
|
||||
* SetName
|
||||
|
@ -46,6 +46,8 @@ class GEOM_I_EXPORT GEOM_BaseObject_i : public virtual POA_GEOM::GEOM_BaseObject
|
||||
|
||||
virtual CORBA::Long GetType();
|
||||
|
||||
virtual CORBA::Long GetTick();
|
||||
|
||||
virtual void SetName(const char* theName);
|
||||
|
||||
virtual char* GetName();
|
||||
|
Loading…
Reference in New Issue
Block a user