00001 /*======================================================================= 00002 *** THE CONTENT OF THIS WORK IS PROPRIETARY TO FEI S.A.S, (FEI S.A.S.), *** 00003 *** AND IS DISTRIBUTED UNDER A LICENSE AGREEMENT. *** 00004 *** *** 00005 *** REPRODUCTION, DISCLOSURE, OR USE, IN WHOLE OR IN PART, OTHER THAN AS *** 00006 *** SPECIFIED IN THE LICENSE ARE NOT TO BE UNDERTAKEN EXCEPT WITH PRIOR *** 00007 *** WRITTEN AUTHORIZATION OF FEI S.A.S. *** 00008 *** *** 00009 *** RESTRICTED RIGHTS LEGEND *** 00010 *** USE, DUPLICATION, OR DISCLOSURE BY THE GOVERNMENT OF THE CONTENT OF THIS *** 00011 *** WORK OR RELATED DOCUMENTATION IS SUBJECT TO RESTRICTIONS AS SET FORTH IN *** 00012 *** SUBPARAGRAPH (C)(1) OF THE COMMERCIAL COMPUTER SOFTWARE RESTRICTED RIGHT *** 00013 *** CLAUSE AT FAR 52.227-19 OR SUBPARAGRAPH (C)(1)(II) OF THE RIGHTS IN *** 00014 *** TECHNICAL DATA AND COMPUTER SOFTWARE CLAUSE AT DFARS 52.227-7013. *** 00015 *** *** 00016 *** COPYRIGHT (C) 1996-2014 BY FEI S.A.S, *** 00017 *** BORDEAUX, FRANCE *** 00018 *** ALL RIGHTS RESERVED *** 00019 **=======================================================================*/ 00020 /*======================================================================= 00021 ** Author : VSG (MMM YYYY) 00022 **=======================================================================*/ 00023 // SbElapsedTime.h 00024 00025 #ifndef _SB_ELAPSED_TIME_H_ 00026 #define _SB_ELAPSED_TIME_H_ 00027 00028 #include <Inventor/SbBase.h> 00029 #include <Inventor/SbTime.h> 00030 #include <Inventor/STL/iostream> 00031 00045 class SbElapsedTime { 00046 00047 public: 00051 SbElapsedTime(); 00052 00056 void reset(); 00057 00061 double getElapsed() const; 00062 00066 SbTime getElapsedTime() const; 00067 00068 private: 00069 00076 static uint64_t getTimeStamp(); 00077 00081 friend std::ostream& operator << (std::ostream& os, const SbElapsedTime& t); 00082 00083 private: 00087 static SbBool hasHiResTimer(); 00088 00089 // Does this system have a hi-res timer? 00090 static SbBool haveHiRes; 00091 00092 // Set by constructor and reset method 00093 SbTime m_startTime; 00094 00095 #ifdef _WIN32 00096 // Frequency of high performance counter 00097 static double m_frequency; 00098 00099 // Set by constructor and reset method 00100 LARGE_INTEGER m_startCount; 00101 #endif 00102 }; 00103 00104 #endif //_SB_ELAPSED_TIME_H_ 00105 00106