Changeset 112 for abuse/trunk/src/imlib/timing.hpp
- Timestamp:
- Mar 16, 2008, 12:52:51 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
abuse/trunk/src/imlib/timing.hpp
r57 r112 13 13 class time_marker 14 14 { 15 public 16 long seconds;17 long micro_seconds;18 void get_time();19 time_marker();20 double diff_time(time_marker *other); // returns time diff in seconds21 } 15 public: 16 long seconds; 17 long micro_seconds; 18 void get_time(); 19 time_marker(); 20 double diff_time(time_marker *other); // return time diff in seconds 21 }; 22 22 23 void milli_wait(unsigned wait_time); // sleeps for a milli second 1000 millies=1 sec23 void milli_wait(unsigned int wait_time); // sleep for a millisecond 24 24 void timer_init(); 25 25 void timer_uninit();
Note: See TracChangeset
for help on using the changeset viewer.