![]() |
Orfeo Toolbox
3.16
|
Generate a unique, increasing time value. More...
#include <itkTimeStamp.h>
Public Types | |
| typedef TimeStamp | Self |
Public Member Functions | |
| TimeStamp () | |
| void | Delete () |
| unsigned long | GetMTime () const |
| void | Modified () |
| operator unsigned long () const | |
| bool | operator< (TimeStamp &ts) |
| bool | operator> (TimeStamp &ts) |
Static Public Member Functions | |
| static const char * | GetNameOfClass () |
| static Self * | New () |
Private Attributes | |
| unsigned long | m_ModifiedTime |
Generate a unique, increasing time value.
TimeStamp records a unique time when the method Modified() is executed. This time is guaranteed to be monotonically increasing. Classes use this object to record modified and/or execution time. There is built in support for the binary < and > comparison operators between two TimeStamp objects.
Definition at line 49 of file itkTimeStamp.h.
| typedef TimeStamp itk::TimeStamp::Self |
Standard class typedefs.
Definition at line 53 of file itkTimeStamp.h.
|
inline |
Constructor must remain public because classes instantiate TimeStamps implicitly in their construction.
Definition at line 61 of file itkTimeStamp.h.
|
inline |
Destoy this instance.
Definition at line 65 of file itkTimeStamp.h.
|
inline |
Return this object's Modified time.
Definition at line 82 of file itkTimeStamp.h.
|
inlinestatic |
The class name as a string.
Definition at line 69 of file itkTimeStamp.h.
| void itk::TimeStamp::Modified | ( | void | ) |
Set this objects time to the current time. The current time is just a monotonically increasing unsigned long integer. It is possible for this number to wrap around back to zero. This should only happen for processes that have been running for a very long time, while constantly changing objects within the program. When this does occur, the typical consequence should be that some filters will update themselves when really they don't need to.
Make sure the new time stamp is greater than all others so far.
Initialize static member
Used for mutex locking
Definition at line 68 of file itkTimeStamp.cxx.
References itk::SimpleFastMutexLock::Lock(), and itk::SimpleFastMutexLock::Unlock().
Referenced by otb::Function::NoStretchRenderingFunction< TPixel, TRGBPixel, TPixelRepresentationFunction, TTransferFunction >::Initialize(), otb::Function::StandardRenderingFunction< TPixel, TRGBPixel, TPixelRepresentationFunction, TTransferFunction >::Initialize(), itk::MatrixOffsetTransformBase< TScalarType, 3, 3 >::SetMatrix(), itk::MatrixOffsetTransformBase< TScalarType, 3, 3 >::SetVarInverseMatrix(), and itk::MatrixOffsetTransformBase< TScalarType, 3, 3 >::SetVarMatrix().
|
static |
Create an instance of this class. We don't want to use reference counting.
Instance creation.
Definition at line 57 of file itkTimeStamp.cxx.
|
inline |
Allow for typcasting to unsigned long.
Definition at line 92 of file itkTimeStamp.h.
|
inline |
Definition at line 88 of file itkTimeStamp.h.
References m_ModifiedTime.
|
inline |
Support comparisons of time stamp objects directly.
Definition at line 86 of file itkTimeStamp.h.
References m_ModifiedTime.
|
private |
Definition at line 96 of file itkTimeStamp.h.
Referenced by operator<(), and operator>().