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:
eap 2014-03-07 14:47:59 +04:00
parent a6fe4c1ad0
commit f095bd1733
3 changed files with 18 additions and 0 deletions

View File

@ -273,6 +273,11 @@ module GEOM
*/ */
long GetType(); long GetType();
/*!
* \brief Get value of a modification counter of the object
*/
long GetTick();
/*! /*!
* \brief Set a Study entry where this object was published. * \brief Set a Study entry where this object was published.
*/ */

View File

@ -105,6 +105,17 @@ CORBA::Long GEOM_BaseObject_i::GetType()
return _impl->GetType(); return _impl->GetType();
} }
//=============================================================================
/*!
* GetTick
*/
//=============================================================================
CORBA::Long GEOM_BaseObject_i::GetTick()
{
return _impl->GetTic();
}
//============================================================================= //=============================================================================
/*! /*!
* SetName * SetName

View File

@ -46,6 +46,8 @@ class GEOM_I_EXPORT GEOM_BaseObject_i : public virtual POA_GEOM::GEOM_BaseObject
virtual CORBA::Long GetType(); virtual CORBA::Long GetType();
virtual CORBA::Long GetTick();
virtual void SetName(const char* theName); virtual void SetName(const char* theName);
virtual char* GetName(); virtual char* GetName();