Salome HOME
22501: [CEA 1076] Impossible to mesh at its position a translated without copy shape...
authoreap <eap@opencascade.com>
Fri, 7 Mar 2014 10:47:59 +0000 (14:47 +0400)
committereap <eap@opencascade.com>
Fri, 7 Mar 2014 10:47:59 +0000 (14:47 +0400)
idl/GEOM_Gen.idl
src/GEOM_I/GEOM_BaseObject_i.cc
src/GEOM_I/GEOM_BaseObject_i.hh

index f7af6efcb293f88531e8bb16f405c97ceca94a2f..dcb9de5a03190e9f0b4718afa0e0040ed7faf4fe 100644 (file)
@@ -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.
      */
index 79a943099ace4fd57fd499686b181186bdae84dc..f63c3c5e89a290e6dd39c359c8f7cb071bdb24f5 100644 (file)
@@ -105,6 +105,17 @@ CORBA::Long GEOM_BaseObject_i::GetType()
   return _impl->GetType();
 }
 
+//=============================================================================
+/*!
+ *  GetTick
+ */
+//=============================================================================
+
+CORBA::Long GEOM_BaseObject_i::GetTick()
+{
+  return _impl->GetTic();
+}
+
 //=============================================================================
 /*!
  *  SetName
index 6a89e7fe85c20fa215d04f727388ee68e5e2c0ac..bd72cd7a90c6d04e09a83f0cfcdb72caffe671a3 100644 (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 GetTick();
+
   virtual void SetName(const char* theName);
 
   virtual char* GetName();