ObjectSpace :: updateTimestamp - Enable/Disable time stamp updating
When objects are derived from __OBJECT , the time stamp in the __OBJECT base structure is updated automatically, whenever an object is modified. In order to suppress automatic timestamp update, this object space property can be set to false . When being set to true , timestamp updating is enabled.
In order to enable automatic timestamps, this option is be passed as true . Passing false indicated disabled timestamps.
Implementation overview
- Get timestamp update option
ObjectSpace :: updateTimestamp (  ) - Set timestamp update option
ObjectSpace :: updateTimestamp ( bTimestamp )
Implementation details
-
Get timestamp update option
bool ObjectSpace  :: updateTimestamp (  )
The function returns true , when timestamp update is enabled and false otherwise.
to list
-
Set timestamp update option
bool ObjectSpace  :: updateTimestamp ( bool bTimestamp )
In order to suppress time stamp updating, false has to be passed in bTimeStamp . After disabling automatic time stamping, the application must enable this feature explicitly, when time stamping is requested again.
- bTimestamp
- Timestamp option
In order to enable automatic timestamps, this option is be passed as true . Passing false indicated disabled timestamps.
to list
- bTimestamp
- Timestamp option