Static Public Member Functions | |
static bool | Archive (tTime &time) |
Definition at line 230 of file tSysTime.cpp.
static bool TimeArchiver< Archiver >::Archive | ( | tTime & | time | ) | [inline, static] |
Definition at line 233 of file tSysTime.cpp.
References tTime::microseconds, and tTime::seconds.
Referenced by tAdvanceFrame().
00233 : 00234 static bool Archive( tTime & time ) 00235 { 00236 // start archive block if archiving is active 00237 Archiver archive; 00238 if ( archive.Initialize( recordingSection ) ) 00239 { 00240 archive.Archive( time.seconds ).Archive( time.microseconds ); 00241 return true; 00242 } 00243 00244 return false; }