*** empty log message ***

This commit is contained in:
Mike Goslin 2001-02-20 23:53:35 +00:00
parent 2b5709f63a
commit 318474d675
3 changed files with 32 additions and 10 deletions

View File

@ -233,3 +233,32 @@ INLINE void ClockObject::
set_time(double time) { set_time(double time) {
set_real_time(time); set_real_time(time);
} }
////////////////////////////////////////////////////////////////////
// Function: TimeVal::contructor
// Access: Public
// Description:
////////////////////////////////////////////////////////////////////
INLINE TimeVal::
TimeVal(void) {
}
////////////////////////////////////////////////////////////////////
// Function: TimeVal::get_sec
// Access: Public
// Description:
////////////////////////////////////////////////////////////////////
INLINE ulong TimeVal::
get_sec(void) const {
return tv[0];
}
////////////////////////////////////////////////////////////////////
// Function: TimeVal::get_usec
// Access: Public
// Description:
////////////////////////////////////////////////////////////////////
INLINE ulong TimeVal::
get_usec(void) const {
return tv[1];
}

View File

@ -53,15 +53,6 @@ tick() {
_frame_count++; _frame_count++;
} }
////////////////////////////////////////////////////////////////////
// Function: TimeVal::contructor
// Access: Public
// Description:
////////////////////////////////////////////////////////////////////
TimeVal::
TimeVal(void) {
}
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
// Function: get_time_of_day // Function: get_time_of_day
// Description: // Description:

View File

@ -13,7 +13,9 @@
class EXPCL_PANDAEXPRESS TimeVal { class EXPCL_PANDAEXPRESS TimeVal {
PUBLISHED: PUBLISHED:
TimeVal(); INLINE TimeVal(void);
INLINE ulong get_sec(void) const;
INLINE ulong get_usec(void) const;
ulong tv[2]; ulong tv[2];
}; };