VTK
vtkTimeStamp.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkTimeStamp.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
26 #ifndef vtkTimeStamp_h
27 #define vtkTimeStamp_h
28 
29 #include "vtkCommonCoreModule.h" // For export macro
30 #include "vtkSystemIncludes.h"
31 
32 class VTKCOMMONCORE_EXPORT vtkTimeStamp
33 {
34 public:
35  vtkTimeStamp() {this->ModifiedTime = 0;};
36  static vtkTimeStamp *New();
37  void Delete() {delete this;};
38 
49  void Modified();
50 
54  vtkMTimeType GetMTime() const {return this->ModifiedTime;};
55 
57 
60  bool operator>(vtkTimeStamp& ts) {
61  return (this->ModifiedTime > ts.ModifiedTime);};
62  bool operator<(vtkTimeStamp& ts) {
63  return (this->ModifiedTime < ts.ModifiedTime);};
65 
69  operator vtkMTimeType() const {return this->ModifiedTime;};
70 
71 private:
72  vtkMTimeType ModifiedTime;
73 };
74 
75 #endif
76 // VTK-HeaderTest-Exclude: vtkTimeStamp.h
vtkTypeUInt32 vtkMTimeType
Definition: vtkType.h:300
void Delete()
Definition: vtkTimeStamp.h:37
bool operator>(vtkTimeStamp &ts)
Support comparisons of time stamp objects directly.
Definition: vtkTimeStamp.h:60
record modification and/or execution time
Definition: vtkTimeStamp.h:32
vtkMTimeType GetMTime() const
Return this object's Modified time.
Definition: vtkTimeStamp.h:54
bool operator<(vtkTimeStamp &ts)
Support comparisons of time stamp objects directly.
Definition: vtkTimeStamp.h:62